我试图使用这一行:
WebDriver driver = new ChromeDriver();
但是我无法解决这两个类的类型错误。 我应该导入哪个库?
答案 0 :(得分:0)
从以下网址下载chromedriver: -
https://chromedriver.storage.googleapis.com/index.html?path=2.31/
完整代码如下: -
System.setProperty("webdriver.chrome.driver","D:\\Workspace\\JmeterWebdriverProject\\src\\lib\\chromedriver.exe");
ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.addArguments("--start-maximized");
WebDriver driver = new ChromeDriver(chromeOptions);
driver.get("https://www.google.co.in/");
根据您的geckodriver
的位置编辑gecko驱动程序的路径