使用Junit方法访问chrome浏览器进入百度地图的脚本如下:
package prj01;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class FirstJunit4WebDriverDemo {
WebDriver driver;
String baseurl="https://www.baidu.com/";//设定访问网站的地址
@Before
public void setUp() throws Exception{
//若无法打开chrome浏览器,可设定chrome浏览器的安装路径
System.setProperty("webdriver.chrome.driver", "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe");
driver=new ChromeDriver();
//"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe"该路径需改为你自己chromedriver.exe文件的存放位置
}
@After
public void tearDown() throws Exception{
driver.quit();//关闭打开的浏览器
}
@Test
public void test() throws Exception{
//打开百度首页
driver.get(baseurl);
//在搜索框中输入“百度地图”
driver.findElement(By.id("kw")).sendKeys("百度地图");
//单击搜索按钮
driver.findElement(By.id("su")).click();
Thread.sleep(2000);
}
}