selenium Android 驱动程序 - 我可以同时运行 2 个测试吗
是否可以在实际设备中同时运行 2 个测试?使用 android 驱动程序。我想同时运行 2 个浏览器(测试)。
Is it possible run 2 test simultaneously in actual device? using android driver.i want to run 2 browser (test) at same time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
小更正:
转发字符串应如下:
重要的是:第一个值应为 8090(或其他选定的端口),第二个值应为 8080
代码应如下:
Little corrections:
Forwarding string should be following:
It is important: 1st value should be 8090 (or other selected port), 2nd value should be 8080
Code should be following:
我想是的。尝试运行 2 个模拟器,但请确保更改行:
为第二个模拟器使用另一个端口。例如。
对于第二个,您必须更改 AndroidDriver 的构造函数,因为它默认使用 8080。所以像这样:
I would think yes. Try running 2 of the emulators but make sure you change the line:
To use another port for the second emulator. eg.
For the second one you will have to change the constructor of AndroidDriver since it uses 8080 by default. So something like this: