带有Edge的Selenium RemoteWebDriver UnreachableBrowserException

时间:2018-03-09 20:06:08

标签: java maven selenium microsoft-edge remotewebdriver

您好我一直在使用Maven和TestNG Framework开展一个侧面项目。到目前为止,我的代码适用于WebDriver实例(Chrome,Firefox,Edge),但在尝试使用Edge设置RemoteWebDriver时,我仍然遇到错误。以下是我设置Driver类(实现WebDriver类)的方法:(通过RemoteWebDriver初始化Driver显示构造函数部分:

编辑:

 public Driver (String browserName) {
    this.browserName = browserName;
    ....

    if(browserName.equalsIgnoreCase("edge")) {
        System.setProperty("webdriver.edge.driver","./resources/webdrivers/MicrosoftWebDriver.exe");
        DesiredCapabilities browser = DesiredCapabilities.edge();
        browser.setPlatform(Platform.WIN10);
        try {
            this.driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), browser);
        } catch (MalformedURLException e) {
            e.printStackTrace();
        }
        js = (JavascriptExecutor) driver;
        bugCapture = (TakesScreenshot)driver;
        testFailDir = newFailCapDir();
    }

使用mvn运行代码并设置-Dbrowser = edge时,这是我收到的错误:

  org.openqa.selenium.remote.UnreachableBrowserException:
  Could not start a new session. Possible causes are invalid address of the 
  remote server or browser start-up failure.
  Build info: version: '3.7.1', revision: '8a0099a', time: '2017-11-
  06T21:01:39.354Z'
  System info: host: 'LAPTOP-L1BFDSGL', ip: '10.0.0.11', os.name: 'Windows 
  10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_162'
  Driver info: driver.version: Driver
  Caused by: org.apache.http.conn.HttpHostConnectException: Connect to 
  localhost:17556 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: 
  Connection refused: connect
  Caused by: java.net.ConnectException: Connection refused: connect

经过一番研究,我认为问题在于我没有Selenium-server-stand独立的jar文件,它似乎调用了Selenium jar文件的Maven Dependencies。我已经浏览了这个网站和其他人,以找到我的问题的解决方案,但我仍然得到同样的错误。是否有丢失的文件或RemoteWebDriver是否可以应用Edge驱动程序?

在这种情况下,任何建议都会有所帮助。 感谢。

更新 @ DebanjanB的要求,我使用的中心是在宣言期间。经过一些研究后,我没有意识到我没有必要让集线器或节点处于活动状态。 (可能是为什么我得到无法访问的异​​常。)我还检查过我可以设置一个集线器和节点(我使用端口-5555作为节点角色)。我在单独的cmd提示中用于Hub和Node的命令:

java -jar selenium-server-standalone-3.10.0.jar -role hub 

java -jar selenium-server-standalone-3.10.0.jar -role node -hub 
http://localhost:4444/grid/register -port 5555

我还更新了我的maven依赖项以包含到Selenium服务器独立版。 我参加考试的那位专家是:

mvn test -Dbrowser=edge -Dgroups=<specified group> 

当我运行集线器运行时,我收到了此异常错误:

  org.openqa.selenium.remote.UnreachableBrowserException:
  Could not start a new session. Possible causes are invalid address of the 
  remote server or browser start-up failure.
  Build info: version: '3.10.0', revision: '176b4a9', time: '2018-03-
  02T19:03:16.397Z'
  System info: host: 'LAPTOP-L1BFDSGL', ip: '10.0.0.11', os.name: 'Windows 
  10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_162'
  Driver info: driver.version: Driver
 Caused by: java.net.ConnectException: Failed to connect to /10.0.0.11:4444
 Caused by: java.net.ConnectException: Connection refused: connect

在失败之前,我看到了这样的信息:        2018年3月9日下午7:05:25 org.openqa.selenium.remote.DesiredCapabilities        边缘        信息:优先使用new EdgeOptions()       DesiredCapabilities.edge()        //关于测试用例失败并跳过的错误

@DebanjanB让我知道你是否需要更多澄清。

更新: 我设法让我的远程Webdriver使用Edge。我不得不提到我在设置集线器后注册节点时要使用的Dwebdriver。

注册我的节点:

java -Dwebdriver.edge.driver = MicrosoftWebDriver.exe -jar selenium-server-standalone-3.10.0.jar -role node -hub http://localhost:4444/grid/register -port 5555

(我在路径上添加了物理驱动程序,因为在本地驱动程序上运行时,我将它们放在不同的路径中。)

在我的Driver类中(我必须将URL设置为我的节点而不是我的集线器):

System.setProperty("webdriver.edge.driver","./resources/webdrivers/MicrosoftWebDriver.exe");
                DesiredCapabilities browser = DesiredCapabilities.edge();
                try {
                    driver = new RemoteWebDriver(new URL("http://10.0.0.19:5555/wd/hub"), browser);
                } catch (MalformedURLException e) {
                    e.printStackTrace();
                }

现在我在没有问题的情况下运行边缘命令。 :)

1 个答案:

答案 0 :(得分:1)

错误给了我们一些提示:

org.openqa.selenium.remote.UnreachableBrowserException:
  Could not start a new session. Possible causes are invalid address of the 
  remote server or browser start-up failure.

错误似乎正在出现:

browser.setBrowserName(DesiredCapabilities.edge().getBrowserName());

根据你的代码块, browser DesiredCapabilities 类的一个实例,根据setBrowserName()方法的文档,它被定义为:

public void setBrowserName(java.lang.String browserName)

来自edge()类的DesiredCapabilities方法可帮助我们投射 DesiredCapabilities 对象,但不包含任何方法,例如getBrowserName()就是这样。因此,以下表达式引发错误:

DesiredCapabilities.edge().getBrowserName()

根据 Selenium v​​3.10.0 的当前版本,使用chrome()firefox(),{{1}投射 DesiredCapabilities 对象}或internetExplorer()会自动设置 BrowserName ,并且无需明确提及。

更新

您需要发送适当的命令来启动 Selenium Grid Hub Selenium Grid Node