selenium2 webdriver 简单使用
程序员文章站
2022-03-08 13:11:02
...
在项目中看到测试工程师做的自动化测试,觉得蛮有意思的所以在业余时间也自己搭建一个玩玩。采用的是Java编写脚本,此次简单的介绍怎么搭建一个简单的selenium项目。
难点:
不同浏览器需要下载不同的driver,同时不同版本的浏览器需要不同版本的selenium jar包来支持。首先你需要了解自己浏览器的版本。我采用的是Chrome 50.0版本,selenium用的3.0.0版
可以去此链接下载对应jar包,或者官网下载最新版本
导入jar包
这个很简单,eclipse的话在项目中创建lib目录,然后把jar包直接复制粘贴进去就可以了;Intellij 可以Ctrl+Alt+Shift+S 进入项目设置 到Libraries 部分添加
此处就添加Java包就可以了,maven添加导入不在此处介绍。
编写简单的脚本
废话少说直接上代码
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.edge.EdgeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
/**
此处省略类名
*/
public static void main(String []args) {
/**
一般人都没把浏览器安装到默认的目录下,所以此处要设置一下,同时你得下载对应的driver.exe (Windows系统)并放置到和Chrome.exe同目录下
*/
System.setProperty("webdriver.chrome.driver", "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chromedriver.exe");
WebDriver driver = new ChromeDriver();//新建一个Driver对象
driver.get("http://www.baidu.com/");
driver.manage().window().maximize();//窗口最大化
WebElement txtInput = driver.findElement(By.name("wd"));//按照元素属性name来查找
txtInput.sendKeys("段杰东");//设置此元素的value
WebElement btnSearch = driver.findElement(By.id("su"));//根据元素属性id来找到对应元素
btnSearch.click();//设置此元素点击事件
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
ChromeDirver.ext 下载链接 http://download.csdn.net/detail/asivy/8152393
各位若是有兴趣可以关注此网站的教程
http://www.yiibai.com/selenium/selenium_webdriver.html
下一篇: 内部类的分类