Selenium会话未创建异常错误

时间:2019-05-01 10:16:07

标签: java eclipse selenium

我收到此错误:

  

“线程“ 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/");
    }
}

1 个答案:

答案 0 :(得分:0)

chrome驱动程序系统属性区分大小写。

使用此:

System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");