我收到此错误:
“线程“ main” org.openqa.selenium.SessionNotCreatedException中的异常:会话未创建的异常“
我也将chrome和驱动程序也更新到了最新版本。但是仍然出现相同的错误。
package helloworld;
public class testfb {
public static void main(String[] args) {
System.setProperty("webDriver.ChromeDriver", "C:\\minal\\drivers\\ChromeDriver.exe ");
// TODO Auto-generated method stub
WebDriver driver = new ChromeDriver();
driver.get("https://www.google.com/");
}
}
答案 0 :(得分:0)
chrome驱动程序系统属性区分大小写。
使用此:
System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");