简单使用Selenium Grid
1, 启动hub(机器X)
Hub作为中央节点,他将接收所有的测试请求,然后分发到各个测试节点上。打开控制台,进入selenium-server-standalone所在目录,输入以下指令:
java -jar selenium-server-standalone-2.25.0.jar -role hub
2,启动node(机器A1)
通过相同的selenium-server-standalone包启动就可以了,代码如下:
java -jar selenium-server-standalone-2.25.0.jar -role node -browser browserName=firefox,version=7.0,firefox_binary=C:\Program Files\Mozilla Firefox,maxInstances=3,platform=WINDOWS -browser browserName=chrome,version=20,platform=WINDOWS -hub http://hubhost:4444/grid/register
3,代码运行(机器B1)
DesiredCapabilities capability =new DesiredCapabilities();
capability.setBrowserName("chrome");
capability.setPlatform(Platform.WINDOWS);
WebDriver driver=null;
try {
driver = new RemoteWebDriver(new
URL("http://hubhost:4444/wd/hub"),capability);
}
catch (MalformedURLException e) {
e.printStackTrace();
}
driver.get("http://www.360buy.com/");
dirver.quit();
注意:
1,以上 A1 和B1 都是可以有多个的, 如 A2 A3 B3 B4 B2等,如附件图。
2, hubhost根据hub机的ip来修改变动。