package com.selenium;
import org.openqa.selenium.*;
import org.openqa.selenium.chrome.ChromeDriver;
public class seleniumTestDemo1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
WebDriver driver = new ChromeDriver();
driver.get("http://baidu.com");
System.out.print("test");
}
}
这里是你填的是百度的网址,估计是你用IDE录的然后转的Java,改成你想测试的系统地址就好了
你要看看你的主页是不是百度啊