|
代码如下:
package my.dylan;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class chromeTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
//设置chrome路径
System.setProperty("webdriver.chrome.driver", "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe");
//创建chrome对象
WebDriver driver = new ChromeDriver();
//打开百度
driver.navigate().to("http://www.baidu.com");
//获取网页的title
System.out.println("当前页面title为:"+driver.getTitle());
运行时打开的chrome浏览器地址栏是data:,,界面打不开,后台没有报错。
|
|