使用Junit编写webdriver脚本-访问chrome浏览器的百度地图

使用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);
		
	}

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值