|
这个简单的selenium demo的制作过程如下:
准备工作 ,将selenium 库添加进eclipse 中(window--preference ->Java->Build Path ->Add Libraries -> User Library )。
首先 create java project , 把刚才创建的用户自定义类库“selenium”导入新建的Java Project。具体步骤是:选中
seleniumdemo项目 ->右键 ->Build Path ->Add Libraries -> User Library ->Next –>勾选selenium ->点击 Finish
完成导入,如果你成功导入了会在项目中显示selenium库。
最后create java class:
a、声明driver对象(也就是你将要启动什么浏览器) WebDriver driver = new FirefoxDriver();
b、driver去打开浏览器并输入你要测试的网页地址(使用get方法打开测试站点)driver.get("http://www.haosou.com/");
c、找到你要操作元素(利用WebElement声明元素对象)WebElement searchinput = driver.findElement(By.name("q"));
d、对元素进行输入、点击、断言操作
e、关闭浏览器,释放资源
如下示例:
- public static void main(String[] args) {
- //声明一个火狐浏览器driver对象,启动浏览器
- WebDriver driver = new FirefoxDriver();
- //输入要访问的网页地址
- driver.get("http://www.haosou.com/");
- //通过查看元素,查找到search输入框元素name属性
- WebElement searchinput = driver.findElement(By.name("q"));
- //输入“selenium”
- searchinput.sendKeys("selenium");
- //通过查看元素,查找到search按钮 元素id属性
- WebElement searchButton = driver.findElement(By.id("search-button"));
- //点击按钮
- searchButton.click();
- //加载网页
- try {
- Thread.sleep(2000);
- } catch(InterruptedException e) {
- e.printStackTrace();
- }
- //跳转之后的页面关键字输入框元素
- WebElement keywordinput = driver.findElement(By.id("keyword"));
- //验证输入框中是否输入selenium字段
- Assert.assertEquals(keywordinput.getAttribute("value"), "selenium");
- //关闭浏览器
- driver.quit();
- }
复制代码
|
|