我正在使用selenium网格2.当我运行我的selenium测试时,我希望这个测试在一个浏览器上运行5次。我假设我正在运行selenium测试我想让它在5个firefox浏览器实例上运行。
我尝试使用以下cmd命令
java -jar E:\selenium-server-standalone-2.42.2.jar -role node -hub http:localhost:4444/grid/register -port 5570 -browser browserName=firefox, maxInstances=5 –maxSession 5
但是使用此命令,我只能创建一个浏览器实例。
请建议
答案 0 :(得分:0)
尝试:
java -jar E:\selenium-server-standalone-2.42.2.jar -role node -hub http:localhost:4444/grid/register -port 5570 -browser "browserName=firefox, maxInstances=5" –maxSessions 5
我在-browser args周围添加了语音标记(不确定是否需要)
并且-maxSessions
不是-maxSession