selenium+eclipse 打开网页时报错

2020-09-28 20:36发布

问题:

selenium+eclipse 打开网页时报错

源代码:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.ui.Select;

public class Test1 {

public static void main(String[] args) {
	WebDriver driver;
    System.setProperty("webdriver.chrome.driver", "C:\\Users\\lenovo\\AppData\\Local\\Google\\Chrome\\Application\\chromedriver.exe");
    //这里的驱动路径一定要写双斜杠,转义
    driver = new ChromeDriver();
    driver.get("http://www.baidu.com");
	

}

}

回答1:

ChromDriver版本和谷歌浏览器版本不匹配
ChromeDriver与Chrome版本对应参照表



回答2:

是不是少了geckodriver.exe