我是 selenium java 的新手。 我编写了第一个代码来使用网络驱动程序打开页面,浏览器 chrome 打开时没有内容
public class WebdriverDemo {
public static void main(String[] args) {
String url = "http://www.google.com";
WebDriver driver = new ChromeDriver();
driver.get(url);
//i tried driver.navigate().to(url); either but it's not working the same result !!
}
}
只需添加这部分代码:
ChromeOptions optionss=new ChromeOptions(); optionss.addArguments("--remote-allow-origins=*"); WebDriver driver=new ChromeDriver(optionss);