- 下载 selenium-server-standalone-3.4.0.jar包
- 在selenium-server-standalone-3.4.0.jar包目录下面执行cmd 命令 java -jar selenium-server-standalone-3.4.0.jar -role hub 启用selenium grid hub, 默认端口 4444
- 注册浏览器客户端,命令行执行:java -Dwebdriver.ie.driver="D:\AutoConf\bin\IEDriverServer.exe" -jar selenium-server-standalone-3.4.0.jar -role node -hub http://localhost:4444/grid/register 启用了一个端口为5555 的node
- selenium 脚本代码
DesiredCapabilities capability = DesiredCapabilities.internetExplorer();
capability.setBrowserName("internet explorer" );
capability.setPlatform(Platform.VISTA);try {
driver = new RemoteWebDriver(new URL("http://10.118.164.104:5555/wd/hub"), capability);
} catch (MalformedURLException e) {
e.printStackTrace();
}
相关文章
- 『心善渊』Selenium3.0基础 — 3、使用Selenium操作浏览器对象的基础API
- selenium+python自动化测试之使用webdriver操作浏览器的方法
- 关于爬虫的日常复习(10)—— 实战:使用selenium模拟浏览器爬取淘宝美食
- scp 免密登录ssh-copy-id 如何使用非22端口 + rsync 同步远程机器的文件到本地
- selenium使用chrome浏览器测试(附chromedriver与chrome的对应关系表)
- 如何使用sh或终端从ubuntu机器打开远程ubuntu机器上的终端
- 您可以在谷歌浏览器中使用VMWare的远程控制台吗?
- 在新标签页中打开链接适用于Firefox,但不适用于使用Selenium的Chrome浏览器
- 使用python Fabric动态修改远程机器hosts的方法
- 『心善渊』Selenium3.0基础 — 18、使用Selenium操作浏览器的弹窗