selenium+eclipse 打开网页时报错

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");

}

}

回答

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

以上是 selenium+eclipse 打开网页时报错 的全部内容, 来源链接: utcz.com/a/49086.html

回到顶部