51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1332|回复: 1
打印 上一主题 下一主题

一个简单的selenium demo

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2018-4-2 15:56:44 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
这个简单的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、关闭浏览器,释放资源

如下示例:

  1. public static void main(String[] args) {
  2. //声明一个火狐浏览器driver对象,启动浏览器
  3. WebDriver driver = new FirefoxDriver();
  4. //输入要访问的网页地址
  5. driver.get("http://www.haosou.com/");
  6. //通过查看元素,查找到search输入框元素name属性
  7. WebElement searchinput = driver.findElement(By.name("q"));
  8. //输入“selenium”
  9. searchinput.sendKeys("selenium");
  10. //通过查看元素,查找到search按钮 元素id属性
  11. WebElement searchButton = driver.findElement(By.id("search-button"));
  12. //点击按钮
  13. searchButton.click();
  14. //加载网页
  15. try {
  16. Thread.sleep(2000);
  17. } catch(InterruptedException e) {
  18. e.printStackTrace();
  19. }
  20. //跳转之后的页面关键字输入框元素
  21. WebElement keywordinput = driver.findElement(By.id("keyword"));
  22. //验证输入框中是否输入selenium字段
  23. Assert.assertEquals(keywordinput.getAttribute("value"), "selenium");
  24. //关闭浏览器
  25. driver.quit();
  26. }
复制代码


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-17 22:40 , Processed in 0.066634 second(s), 24 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表