我使用夜视仪并行运行测试。我希望能够在不同的硒过程中一次运行多个测试。我怎么能做到这一点?
我所做的是创建一个硒中心:
java -jar /opt/selenium-server-standalone-2.53.0.jar -Dwebdriver.chrome.driver=/usr/bin/chromedriver -Dwebdriver.chrome.bin=/usr/bin/google-chrome -log /home/jenkins-user/log/selenium.log -role hub &
当每个测试运行时,我创建一个节点:
java -jar /opt/selenium-server-standalone-2.53.0.jar -Dwebdriver.chrome.driver=/usr/bin/chromedriver -Dwebdriver.chrome.bin=/usr/bin/google-chrome -log /home/jenkins-user/log/selenium.log -role node -browser browserName=chrome -hub http://localhost:4444/grid/register &
不幸的是,这阻止了我并行运行夜间测试。
我做错了什么?