我正在尝试使用以下代码启动Chrome。
WebDriver driver;
System.setProperty("webdriver.chrome.driver", "properties/chromedriver.exe");
driver = new ChromeDriver();
driver.get("www.google.com");
当程序运行时,chrome会打开,之后我会收到以下错误
无法加载扩展程序 C:\ Users \用户名\应用程序数据\本地\ TEMP \ scoped_dir4560_5259 \内部。 权限[1]的值无效。
答案 0 :(得分:0)
请在代码中更改以下行:
driver.get( “http://www.google.com”);
按照上面的说法使用带有URL的Http。
另请从下面下载最新的Chrome驱动程序:
http://chromedriver.storage.googleapis.com/index.html?path=2.10/
将以上下载的文件替换为您的属性文件夹,然后运行