Selenium2.41.0—获取动态资源

一概述

    获取动态资源,可以使用HtmlUnit,但是其对JS的支持还是不够完善。相对与HtmlUnit还有一种驱动浏览器的下载还原工具Selenium。可以打开浏览器,获取网页,下载解析,支持dom,js,解析效果更好,但是打开浏览器速度方面有一定损失。个人实验,禁用CSS,图片下载,速度还尚可。

    Selenium也是自动化测试工具,支持驱动不同的浏览器,Firefox,IE,Chrome等,也包含HtmlUnit提供的驱动实现。

    本文描述Selenium驱动Firefox,请求响应,设置cookies,驱动JS等方法,用他登录某主流weibo还是不错的。

 

二 版本

 

Xml代码 复制代码  收藏代码
  1. <dependency>  
  2.     <groupId>org.seleniumhq.selenium</groupId>  
  3.     <artifactId>selenium-java</artifactId>  
  4.     <version>2.41.0</version>  
  5. </dependency>  
<dependency>
	<groupId>org.seleniumhq.selenium</groupId>
	<artifactId>selenium-java</artifactId>
	<version>2.41.0</version>
</dependency>

 

三 典型应用

1)打开Google,搜索baidu

可以看到Firefox从打开,填写表单,到提交打开新页面过程。

 

Java代码 复制代码  收藏代码
  1. /** 
  2.  * 打开google搜索百度 
  3.  *  
  4.  * @param queryStr 
  5.  */  
  6. public static void demo() {  
  7.     String url = "http://www.google.com.hk";  
  8.   
  9.     WebDriver webDriver = new FirefoxDriver();  
  10.     // 打开google  
  11.     webDriver.get(url);  
  12.   
  13.     // 使用Selenium的dom模型获取form  
  14.     WebElement webElement = webDriver.findElement(By.name("q"));  
  15.     webElement.sendKeys("baidu");  
  16.     webElement.submit();  
  17.   
  18.     // 通过判断 title 内容等待搜索页面加载完毕,Timeout 设置10秒  
  19.   
  20.     (new WebDriverWait(webDriver, 100)).until(new ExpectedCondition<Boolean>() {  
  21.         public Boolean apply(WebDriver d) {  
  22.             return d.getTitle().toLowerCase().indexOf("baidu") != -1;  
  23.         }  
  24.     });  
  25.   
  26.     String responseBody = webDriver.getPageSource();  
  27.     System.out.println("Response : " + responseBody);  
  28.   
  29.     // 关闭浏览器  
  30.     webDriver.close();  
  31. }  
/**
 * 打开google搜索百度
 * 
 * @param queryStr
 */
public static void demo() {
	String url = "http://www.google.com.hk";

	WebDriver webDriver = new FirefoxDriver();
	// 打开google
	webDriver.get(url);

	// 使用Selenium的dom模型获取form
	WebElement webElement = webDriver.findElement(By.name("q"));
	webElement.sendKeys("baidu");
	webElement.submit();

	// 通过判断 title 内容等待搜索页面加载完毕,Timeout 设置10秒

	(new WebDriverWait(webDriver, 100)).until(new ExpectedCondition<Boolean>() {
		public Boolean apply(WebDriver d) {
			return d.getTitle().toLowerCase().indexOf("baidu") != -1;
		}
	});

	String responseBody = webDriver.getPageSource();
	System.out.println("Response : " + responseBody);

	// 关闭浏览器
	webDriver.close();
}

 

2)获取动态网页

与下面的请求响应一样,打开页面等待加载完毕即可,JS填充页面,AJAX都OK。

 

四 样例

1)请求响应

 

Java代码 复制代码  收藏代码
  1. public static void main(String[] args) throws Exception {  
  2.     String url = "http://www.google.com";  
  3.     WebDriver webDriver = new FirefoxDriver();  
  4.     // 打开google  
  5.     webDriver.get(url);  
  6.         String responseBody = webDriver.getPageSource();    
  7.         System.out.println("Response : " + responseBody);    
  8.     webDriver.quit();  
  9. }  
public static void main(String[] args) throws Exception {
	String url = "http://www.google.com";
	WebDriver webDriver = new FirefoxDriver();
	// 打开google
	webDriver.get(url);
        String responseBody = webDriver.getPageSource();  
        System.out.println("Response : " + responseBody);  
	webDriver.quit();
}

 

(2)配置不加载资源

 

Java代码 复制代码  收藏代码
  1. /** 
  2.  * 获得不加载 css,图片,flash的浏览器 
  3.  * @return 
  4.  */  
  5. public WebDriver getNoResouceWebDriver(){  
  6.     FirefoxProfile firefoxProfile = new FirefoxProfile();  
  7.     // 去掉css  
  8.     firefoxProfile.setPreference("permissions.default.stylesheet"2);  
  9.     // 去掉图片  
  10.     firefoxProfile.setPreference("permissions.default.image"2);  
  11.     // 去掉flash  
  12.     firefoxProfile.setPreference("dom.ipc.plugins.enabled.libflashplayer.so"false);  
  13.     return new FirefoxDriver(firefoxProfile);  
  14. }  
/**
 * 获得不加载 css,图片,flash的浏览器
 * @return
 */
public WebDriver getNoResouceWebDriver(){
	FirefoxProfile firefoxProfile = new FirefoxProfile();
	// 去掉css
	firefoxProfile.setPreference("permissions.default.stylesheet", 2);
	// 去掉图片
	firefoxProfile.setPreference("permissions.default.image", 2);
	// 去掉flash
	firefoxProfile.setPreference("dom.ipc.plugins.enabled.libflashplayer.so", false);
	return new FirefoxDriver(firefoxProfile);
}

 

(3)配置Firefox路径

启动报找不到Firefox的时候可以使用:System.setProperty("webdriver.firefox.bin", firefoxPath)

 

(4)Cookies

1)设置Cookies

 

Java代码 复制代码  收藏代码
  1. public void setCookies(WebDriver,webDriver,Map<String, String> cookies) {  
  2.     if (cookies != null && cookies.size() > 0) {  
  3.         for (Entry<String, String> c : cookies.entrySet()) {  
  4.             Cookie cookie = new Cookie(c.getKey(), c.getValue());  
  5.             webDriver.manage().addCookie(cookie);  
  6.   
  7.             System.out.println("Set Cookies : " + c.getKey() + " | " + c.getValue());  
  8.         }  
  9.     }  
  10. }  
public void setCookies(WebDriver,webDriver,Map<String, String> cookies) {
	if (cookies != null && cookies.size() > 0) {
		for (Entry<String, String> c : cookies.entrySet()) {
			Cookie cookie = new Cookie(c.getKey(), c.getValue());
			webDriver.manage().addCookie(cookie);

			System.out.println("Set Cookies : " + c.getKey() + " | " + c.getValue());
		}
	}
}

 

2)获取响应Cookies

 

Java代码 复制代码  收藏代码
  1. public Map<String,String> getCookies(WebDriver webDriver){  
  2.     Set<Cookie> cookies = webDriver.manage().getCookies();  
  3.     Map<String, String> responseCookies = new HashMap<String,String>();  
  4.     for (Cookie c : cookies) {  
  5.         responseCookies.put(c.getName(), c.getValue());  
  6.     }  
  7.       
  8.     return responseCookies;  
  9. }  
public Map<String,String> getCookies(WebDriver webDriver){
	Set<Cookie> cookies = webDriver.manage().getCookies();
	Map<String, String> responseCookies = new HashMap<String,String>();
	for (Cookie c : cookies) {
		responseCookies.put(c.getName(), c.getValue());
	}
	
	return responseCookies;
}

 

3)清理Cookies

 

Java代码 复制代码  收藏代码
  1. /** 
  2.  * 清除所有cookie 
  3.  */  
  4. public void clearCookies(WebDriver webDriver) {  
  5.     webDriver.manage().deleteAllCookies();  
  6. }  
/**
 * 清除所有cookie
 */
public void clearCookies(WebDriver webDriver) {
	webDriver.manage().deleteAllCookies();
}

 

(5)驱动JS

Selenium 的Dom对不可见的Element(html有但是CSS属性为不显示等)找不到,这时候使用JS操作和提交是个不错的选择:

 

Java代码 复制代码  收藏代码
  1. public void doWeb(WebDriver webDriver) {  
  2.     StringBuilder js = new StringBuilder();  
  3.     js.append("document.getElementsByName('username')[1].value='").append(WeiboAccount.USERNAME)  
  4.             .append("';");  
  5.     js.append("document.getElementsByName('password')[1].value='").append(WeiboAccount.PASSWORD)  
  6.             .append("';");  
  7.     js.append("document.getElementsByClassName('W_btn_g')[1].click();");  
  8.     ((JavascriptExecutor) webDriver).executeScript(js.toString());  
  9.   
  10.     (new WebDriverWait(webDriver, 100)).until(new ExpectedCondition<Boolean>() {  
  11.         public Boolean apply(WebDriver d) {  
  12.             return d.getTitle().indexOf("我的首页") != -1;  
  13.         }  
  14.     });  
  15. }  

 转载至: http://shihlei.iteye.com/blog/2067716

你可能感兴趣的:(selenium)