Selenium 高级应用

对于这一段还蛮有感慨的,只想说,代码还是需要自己去敲的。

1. 改变用户代理

[java] view plaincopy

  1. import org.junit.AfterClass;
  2. import org.junit.BeforeClass;
  3. import org.junit.Test;
  4. import org.openqa.selenium.WebDriver;
  5. import org.openqa.selenium.firefox.FirefoxDriver;
  6. import org.openqa.selenium.firefox.FirefoxProfile;
  7. public class ProxyTest {
  8. static WebDriver driver;
  9. @BeforeClass
  10. public static void beforeClass(){
  11. //代理的IP和端口
  12. String proxyIP="192.168.12.0";
  13. int proxyPort=80;
  14. FirefoxProfile profile=new FirefoxProfile();
  15. //使用代理
  16. profile.setPreference("network.proxy.type", 1);
  17. //配置“HTTP代理:(N)”
  18. profile.setPreference("network.proxy.http", proxyIP);
  19. profile.setPreference("network.proxy.http_prot", proxyPort);
  20. //选中 “为所有协议使用相同代理(S)” 选框
  21. profile.setPreference("network.proxy.share_proxy_settings", true);
  22. //配置“不使用代理:(N)”文本框
  23. profile.setPreference("network.proxy.no_proxies_on", "localhost, 127.0.0.1");
  24. //以代理的方式启动火狐
  25. driver=new FirefoxDriver(profile);
  26. }
  27. @Test
  28. public void test() {
  29. driver.get("http://www.baidu.com");
  30. }
  31. @AfterClass
  32. public static void afterClass(){
  33. //driver.quit();
  34. }
  35. }

运行之后,在打开的火狐上查看代理设置(选项->高级->网络->连接->设置),显示如下:

友情提示:测试完之后一定要改回来。默认是“使用系统代理设置”。

2.读取Cookies

增加cookie:

Cookie cookie = new Cookie("key", "value");

driver.manage().addCookie(cookie);

获取cookie的值:

Set<Cookie> allCookies = driver.manage().getCookies();

根据某个cookie的name获取cookie的值:

driver.manage().getCookieNamed("cookieName");

删除cookie:

driver.manage().deleteCookieNamed("CookieName");

driver.manage().deleteCookie(loadedCookie);

driver.manage().deleteAllCookies();

下面是一个例子:

[java] view plaincopy

  1. import java.util.Set;
  2. import org.junit.After;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. import org.openqa.selenium.Cookie;
  6. import org.openqa.selenium.WebDriver;
  7. import org.openqa.selenium.firefox.FirefoxDriver;
  8. public class CookieTest {
  9. WebDriver driver;
  10. @Before
  11. public void setUp() throws Exception {
  12. driver=new FirefoxDriver();
  13. }
  14. @After
  15. public void tearDown() throws Exception {
  16. driver.quit();
  17. }
  18. @Test
  19. public void test() {
  20. printCookie();
  21. //添加一个cookie
  22. Cookie cookie=new Cookie("s","selenium");
  23. driver.manage().addCookie(cookie);
  24. printCookie();
  25. //删除一个cookie
  26. driver.manage().deleteCookie(cookie);   //driver.manage().deleteCookieNamed("s");也可以
  27. printCookie();
  28. }
  29. public void printCookie(){
  30. //获取并打印所有的cookie
  31. Set<Cookie> allCookies=driver.manage().getCookies();
  32. System.out.println("----------Begin---------------");
  33. for(Cookie c:allCookies){
  34. System.out.println(String.format("%s->%s",c.getName(),c.getValue()));
  35. }
  36. System.out.println("----------End---------------");
  37. }
  38. }

运行结果显示为:

----------Begin---------------
----------End---------------
----------Begin---------------
s->selenium
----------End---------------
----------Begin---------------
----------End---------------
可以看到添加cookie之前,系统的cookie为空。之后成功添加了cookie(s,selenium)并且最后成功删除。

3. 调用Java Script

selenium提供了executeScriptexecuteAsyncScript两个方法来处理JS调用的问题。其中executeScript是同步方法,用它执行js代码会阻塞主线程执行,直到js代码执行完毕;executeAsyncScript方法是异步方法,它不会阻塞主线程执行。

[java] view plaincopy

  1. import org.junit.Test;
  2. import org.openqa.selenium.WebDriver;
  3. import org.openqa.selenium.firefox.FirefoxDriver;
  4. import org.openqa.selenium.JavascriptExecutor;
  5. public class JSTest {
  6. @Test
  7. public void test() {
  8. WebDriver driver=new FirefoxDriver();
  9. driver.get("http://www.baidu.com");
  10. JavascriptExecutor js=(JavascriptExecutor)driver;
  11. js.executeScript("document.getElementById(\"kw\").value=\"selenium\"");
  12. //利用js代码获取百度搜索框内文字
  13. String keyword = (String) (js.executeScript("var input = document.getElementById(\"kw\").value;return input"));
  14. System.out.println(keyword);
  15. driver.quit();
  16. }
  17. }

运行结果:

selenium

4. Webdriver截图

[java] view plaincopy

  1. import java.io.File;
  2. import java.io.IOException;
  3. import org.apache.commons.io.FileUtils;
  4. import org.junit.Test;
  5. import org.openqa.selenium.OutputType;
  6. import org.openqa.selenium.TakesScreenshot;
  7. import org.openqa.selenium.WebDriver;
  8. import org.openqa.selenium.firefox.FirefoxDriver;
  9. public class ScreenShotTest {
  10. @Test
  11. public void test() {
  12. WebDriver driver=new FirefoxDriver();
  13. driver.get("http://www.baidu.com");
  14. screenShot("selenium.jpg", (TakesScreenshot)driver);
  15. driver.quit();
  16. }
  17. public static void screenShot(String name,TakesScreenshot driver){
  18. String savaPath=System.getProperty("user.dir");
  19. File sourceFile=driver.getScreenshotAs(OutputType.FILE);
  20. try{
  21. System.out.println("Begin saving screenshot to path:"+savaPath);
  22. FileUtils.copyFile(sourceFile, new File(savaPath+"\\"+name));
  23. } catch(IOException e){
  24. System.out.println("Save screenshot failed!");
  25. e.printStackTrace();
  26. } finally{
  27. System.out.println("Finish screenshot!");
  28. }
  29. }
  30. }

运行结果:

Begin saving screenshot to path:D:\workspace_luna\SeleniumDemo
Finish screenshot!

由于eclipse的workspace不一样,会导致上面的路径不一样。不过没关系,我们打开对应的路径就可以看到selenium.jpg。打开以后是百度首页的截图。

5. 页面等待

因为Load页面需要一段时间,如果页面还没加载完就查找元素,必然是查找不到的。最好的方式,就是设置一个默认等待时间,在查找页面元素的时候如果找不到就等待一段时间再找,直到超时。Webdriver提供两种方法,一种是显性等待,另一种是隐性等待。

显性等待:

显示等待就是明确的要等到某个元素的出现或者是某个元素的可点击等条件,等不到,就一直等,除非在规定的时间之内都没找到,那么就跳出Exception.

[java] view plaincopy

  1. new WebDriverWait(driver, 10).until(ExpectedConditions.presenceOfElementLocated(By.id("kw")));

当然也可以自己重写内部类:

[java] view plaincopy

  1. WebElement e = (new WebDriverWait( driver, 10)).until(
  2. new ExpectedCondition< WebElement>(){
  3. @Override
  4. public WebElement apply( WebDriver d) {
  5. return d.findElement(By.linkText("Selenium_百度百科"));
  6. }
  7. });

下面的例子是:打开百度,搜索“selenium",等待搜索结果里出现“Selenium_百度百科”的时候点击该链接。

[java] view plaincopy

  1. import org.junit.Test;
  2. import org.openqa.selenium.By;
  3. import org.openqa.selenium.WebDriver;
  4. import org.openqa.selenium.WebElement;
  5. import org.openqa.selenium.firefox.FirefoxDriver;
  6. import org.openqa.selenium.support.ui.ExpectedCondition;
  7. import org.openqa.selenium.support.ui.ExpectedConditions;
  8. import org.openqa.selenium.support.ui.WebDriverWait;
  9. public class ExplicitWaitTest {
  10. @Test
  11. public void test() {
  12. WebDriver driver=new FirefoxDriver();
  13. driver.get("http://www.baidu.com");
  14. driver.findElement(By.id("kw")).sendKeys("selenium");
  15. driver.findElement(By.id("su")).click();
  16. //方法一
  17. //new WebDriverWait(driver,10).until(ExpectedConditions.presenceOfElementLocated(By.linkText("Selenium_百度百科")));
  18. //driver.findElement(By.linkText("Selenium_百度百科")).click();
  19. //方法二
  20. WebElement e = (new WebDriverWait( driver, 10)).until(
  21. new ExpectedCondition< WebElement>(){
  22. @Override
  23. public WebElement apply( WebDriver d) {
  24. return d.findElement(By.linkText("Selenium_百度百科"));
  25. }
  26. }
  27. );
  28. e.click();
  29. driver.quit();
  30. }
  31. }

运行的话是通过的,但是如果中间不显示等待的话,直接查找就会fail。

隐性等待:

隐形等待只是等待一段时间,元素不一定要出现,只要时间到了就会继续执行。

[java] view plaincopy

  1. driver.manage().timeouts().implicitlyWait(second, TimeUnit.SECONDS);

还是上面的例子,用隐性等待写就是:

[java] view plaincopy

  1. import java.util.concurrent.TimeUnit;
  2. import org.junit.Test;
  3. import org.openqa.selenium.By;
  4. import org.openqa.selenium.WebDriver;
  5. import org.openqa.selenium.firefox.FirefoxDriver;
  6. public class ImplicitWaitTest {
  7. @Test
  8. public void test() {
  9. WebDriver driver=new FirefoxDriver();
  10. driver.get("http://www.baidu.com");
  11. driver.findElement(By.id("kw")).sendKeys("selenium");
  12. driver.findElement(By.id("su")).click();
  13. driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
  14. driver.findElement(By.linkText("Selenium_百度百科")).click();
  15. driver.quit();
  16. }
  17. }

运行结果还是通过的。不过个人觉得看起来跟笨方法”Thread.sleep()"差不多,只不多比它更高效了而已。

时间: 2024-11-05 06:05:09

Selenium 高级应用的相关文章

selenium高级应用 - 结束Windows中浏览器的进程

结束Windows中浏览器的进程 #-*- coding:utf-8 #结束Windows中浏览器的进程 from selenium import webdriver import unittest class TestDemo(unittest.TestCase): def test_killWindowsProcess(self): #启动浏览器 firefoxDiver = webdriver.Firefox(executable_path="C:\webdriver_firefox_dr

Selenium WebDriver高级用法

Selenium GitHub地址 选择合适的WebDrvier WebDriver是一个接口,它有几种实现,分别是HtmlUnitDrvier.FirefoxDriver.InternetExplorerDriver.ChromeDriver.OperaDriver,除了 InternetExplorerDriver只能在Windows平台运行,其他WebDriver均能跨平台. 如果追求运行速度,HtmlUnitDriver是首选,但是它没有运行界面,不能实时看到运行效果.如果想看到运行效果

Python3 Selenium自动化web测试 ==&gt; 第八节 WebDriver高级应用 -- 结束Windows中浏览器的进程

学习目的: 掌握WebDriver的高级应用 正式步骤: # -*- coding:utf-8 -*- from selenium import webdriver from selenium.webdriver import ActionChains from selenium.webdriver.support.ui import Select from selenium.webdriver.common.keys import Keys from selenium.common.excep

selenium学习笔记——高级操作

这篇主要介绍一下页面的高级操作:页面跳转.单选下拉框选择.frame切换.鼠标悬停.非网页弹窗 一.页面跳转/窗口跳转 两种方式:不关闭原窗口和关闭原窗口,建议采用第二种关闭原窗口这种方式   不关闭原窗口: 1 //获取当前窗口的句柄 2 String orighandle = driver.getWindowHandle(); 3 //遍历所有句柄 4 for(String handle : driver.getWindowHandles()){ 5 // 如果不是原窗口的句柄,那么就把句柄

Selenium+python自动化12+日志logging基本用法、高级用法

1.关键字: login 登录 log 日志 logging python日志模块 2.什么叫日志: 日志用来记录用户行为或者代码的执行过程 3.日志使用的地方: 1.排错的时候需要打印很多细节来帮助排错 2.有一些用户行为,有没有错都要记录下来(后台) 3.严重的错误记录下来 4.logging模块的日志级别 两种书写格式: 格式一: 格式二: 日志输出 上面列表中的日志等级是从上到下依次升高的,即:DEBUG < INFO < WARNING < ERROR < CRITICA

selenium+python在mac环境上的搭建

前言 mac自带了python2.7的环境,所以在mac上安装selenium环境是非常简单的,输入2个指令就能安装好 需要安装的软件: 1.pip 2.selenium2.53.6 3.Firefox44.dmg 4.Pycharm (环境搭配selenium2+Firefox46及以下版本兼容,selenium3+Firefox47+geckodriver) 一.selenium安装 1.mac自带了python2.7,python里面又自带了easy_install工具,所以安装pip用e

Selenium模块化

概述 高内聚低耦合是软件设计的一个基本原则. 内聚:从功能角度来度量模块内的联系,一个好的内聚模块应当恰好做一件事.它描述的是模块内的功能联系. 耦合:各模块之间相互连接的一种度量,耦合强弱取决于模块间接口的复杂程度.进入或访问一个模块的点以及通过接口的数据,模块之间联系越紧密,其耦合性就越强,模块的独立性则越差. 自动化测试模型也遵循上面的原则,下面从本人熟悉自动化测试的过程中来了解一下. 线性测试 先看两组脚本内容,实际应用过程中以百度进行示例 脚本1 from selenium impor

Selenium 中文API

1.1   下载selenium2.0的lib包 http://code.google.com/p/selenium/downloads/list 官方UserGuide:http://seleniumhq.org/docs/ 1.2   用webdriver打开一个浏览器 我们常用的浏览器有firefox和IE两种,firefox是selenium支持得比较成熟的浏览器.但是做页面的测试,速度通常很慢,严重影响持续集成的速度,这个时候建议使用HtmlUnit,不过HtmlUnitDirver运

Java - Selenium 环境配置

1. 安装Java JDK - 文件自己下 2. 配置环境变量-重要! 我的电脑-属性-高级-环境变量 添加 CLASSPATH  值 .;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar 添加 JAVA_HOME  值  C:\Program Files\Java\jdk1.7.0_79(步骤一安装完成的jdk jre路径) Path 后补 ;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin 3. 测试 cmd 输入Java -versi