selenium grid2 使用远程机器的浏览器

Posted testway

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium grid2 使用远程机器的浏览器相关的知识,希望对你有一定的参考价值。

  • 下载 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();
    }

 












以上是关于selenium grid2 使用远程机器的浏览器的主要内容,如果未能解决你的问题,请参考以下文章

Selenium实战远程控制JAVA爬虫

Python+Selenium笔记:配置selenium Grid

在远程 teamcity 构建代理上运行 selenium 自动化测试

硒的数据安全性

在 selenium 远程节点上运行 chrome 时出错

带有 Selenium 远程的 PyAutoGUI?