Appium多线程并发,其中一个设备无法定位元素问题解决
程序员文章站
2024-03-20 11:21:16
...
定位不到元素原因分析:
问题在于元素定位使用的是 uiAutomator2,其实在一代的uiautomator时需要设置不同的: port, bootstrap.
更新换代后的uiautomator2则需要不同的:port, systemport. ,但是者不可避免的出现了多台设备多线程时,出现systemport端口发生冲突,比如设备1和设备2的systemport端口号都是默认的8200
官方给出的说明如下:
systemPort used to connect to appium-uiautomator2-server, default is 8200 in general and selects one port from 8200 to 8299. When you run tests in parallel, you must adjust the port to avoid conflicts
译制:
systemPort用于连接到appium-uiautomator2-server,通常默认为8200,从8200到8299选择一个端口。当并行运行测试时,必须调整端口以避免冲突
解决方法:
使用管理员身份运行启动appium Desktop, 请使用管理员身份运行,否则经常遇到提示
–override’ exited with code 1
2.多设备并行时,uiautomator第一代需要设置不同的: port, bootstrap.
uiautomator2则需要不同的:port, systemport.
PS:希望这篇博客对大家有帮助,这个问题也困扰了我一天多的时间,希望看完被帮助的博友,能点赞评论顶一下活跃,旨在让更多人看到这个解决的方法,目前网上找appium问题解决方法的文章太少了