我试图在Ubuntu14.04中设置selenium webdriver3.4。在运行selenium脚本时,我收到了HttpHostConnectionException错误。请在下面找到我使用的脚本和错误:
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
public class SampleTest {
WebDriver driver;
@BeforeTest
public void f() {
System.setProperty("webdriver.gecko.driver","/usr/local/bin/geckodriver");
driver = new FirefoxDriver();
}
@Test
public void approvelisting()
{
driver.get("https://<domain name>/");
driver.manage().timeouts().implicitlyWait(500, TimeUnit.SECONDS);
}
}
[RemoteTestNG]检测到TestNG版本6.12.0 1507297197197 geckodriver INFO geckodriver 0.19.0 1507297197226 geckodriver INFO在127.0.0.1:13663上收听 FAILED CONFIGURATION:@BeforeTest f org.openqa.selenium.WebDriverException:org.apache.http.conn.HttpHostConnectException:连接到localhost:13663 [localhost / 127.1.0.0]失败:连接被拒绝(连接被拒绝) 构建信息:版本:&#39; 3.4.0&#39;,修订版:&#39;未知&#39;,时间:&#39;未知&#39; 系统信息:主持人:&#39; admin-coddletech&#39;,ip:&#39; 127.0.0.1&#39;,os.name:&#39; Linux&#39;,os.arch:&#39 ; amd64&#39;,os.version:&#39; 3.16.0-30-generic&#39;,java.version:&#39; 1.8.0_141&#39; 驱动程序信息:driver.version:FirefoxDriver
请帮我解决此异常问题
答案 0 :(得分:0)
我认为您的代码是正确的,似乎您的本地主机设置不正确。
它在我的系统中运行,并且还运行不同的URL。我尝试了另一个相同的代码它工作正常。更改Localhost的端口号,然后尝试
这是我的代码:
public class Stackoverflow_demo {
WebDriver driver;
@BeforeTest
public void f() {
driver = new FirefoxDriver();
}
@Test
public void approvelisting()
{
driver.get("http://127.0.0.1:8080/");
driver.manage().timeouts().implicitlyWait(500, TimeUnit.SECONDS);
}
}
答案 1 :(得分:0)
如果localhost还有其他IP,请确保您在127.0.0.1 localhost
中输入/etc/hosts
,然后将其删除。连接到localhost:13663 [localhost/127.1.0.0]
表示localhost
出于某种原因转到127.1.0.0
而不是127.0.0.1