当我尝试运行以下测试时返回连接超时错误:
@Test
public void run_testing(){
WebDriverManager.chromedriver().setup();
WebDriver driver = new ChromeDriver();
driver.get("http://www.google.com.br");
}
io.github.bonigarcia.wdm.WebDriverManagerException: org.apache.http.conn.HttpHostConnectException: 连接到 chromedriver.storage.googleapis.com:443
我注意到,如果我尝试打开safari浏览器,应用程序会按预期工作。我尝试使用指令来设置代理,例如: WebDriverManager.chromedriver().proxy("server:port").setup() 但它不起作用。
我的机器是mac,但我已经用Windows试过了。我的代理是使用代理自动配置 (PAC)设置的
你可以帮帮我吗?
谢谢!