错误“org.openqa.selenium.WebDriverException:

您好,我无法测试我的 junit 这是我尝试编译时的错误,如果有人可以帮助我,谢谢


org.openqa.selenium.WebDriverException:java.net.ConnectException:无法连接到 localhost/0:0:0:0:0:0:0:1:18218 构建信息:版本:'3.14.0',修订: 'aacccce0',时间:'2018-08-02T20:05:20.749Z' 系统信息:主机:'UTILISA-3AHNTLM',ip:'10.2.10.137',os.name:'Windows 10',os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_191' 驱动信息: driver.version: FirefoxDriver


这是供您参考的代码:注意:当我使用 Junit 构建时,它在 mac 上运行良好


package ca.qc.grasset_420_pa4_ag.lab05.authentification;


import org.junit.Assert;

import org.junit.Test;

import org.openqa.selenium.By;

import org.openqa.selenium.WebElement;


import ca.qc.grasset._420_pa4_ag.lab05.commons.AbstractFunctionalTest;


public final class InvalidUsernameLoginTest


    extends AbstractFunctionalTest {


    public InvalidUsernameLoginTest() {


        super();

    }


    @Test

    public void test() {


        getDriver().get("https://the-internet.herokuapp.com/");

        getDriver().findElement(By.linkText("Form Authentication"))

            .click();

        getDriver().findElement(By.id("username"))

            .click();

        getDriver().findElement(By.id("username"))

            .clear();

        getDriver().findElement(By.id("username"))

            .sendKeys("fdjkfgjkgfhkgf");

        getDriver().findElement(By.id("password"))

            .click();

        getDriver().findElement(By.id("password"))

            .clear();

        getDriver().findElement(By.id("password"))

            .sendKeys("SuperSecretPassword!");

        getDriver().findElement(

            By.xpath(

                "(.//*[normalize-space(text()) and normalize-space(.)='Password'])[1]/following::button[1]"))

            .click();

        validate();

    }


    @Override

    protected void validate() {


        WebElement element = getDriver().findElement(By.xpath("//*[@id=\"flash\"]"));


        String actualMessage = element.getText();

        Assert.assertTrue("Your username is invalid!\n×".equals(actualMessage));

    }

}


慕虎7371278
浏览 1257回答 2
2回答

慕码人8056858

这个错误信息...org.openqa.selenium.WebDriverException: java.net.ConnectException: Failed to connect to localhost/0:0:0:0:0:0:0:1:18218...暗示在初始化WebDriver会话时引发了ConnectException。解决方案有关您正在使用的二进制文件的更多信息可能有助于调试此问题,如下所示:您的GeckoDriver版本。您的Firefox版本。您的问题的一些潜在解决方案是:确保/etc/hosts您的系统上包含以下条目:127.0.0.1 localhost.localdomain localhost#or127.0.0.1 localhost loopback确保 GeckoDriver-Firefox 映射升级GeckoDriver到GeckoDriver v0.23.0水平。确保GeckoDriver存在于指定位置。确保GeckoDriver对非 root 用户具有可执行权限。将Firefox版本升级到Firefox v62.0级别。清理你的项目工作,通过你的IDE和重建仅需要依赖你的项目。如果您的基本Web Client版本太旧,请通过Revo Uninstaller卸载它并安装最新的 GA 和发布版本的Web Client。进行系统重启。Test以非 root 用户身份执行您的操作。

qq_遁去的一_1

该沃伊切赫- Kopec先生的回答可以帮助我解决这个问题,那也许ü没有安装 微软的Visual Studio再分发尚未尝试在此处下载并安装相应的 .exe 文件希望这可以帮助!
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java