Selenium & WebDriver

Selenium 2.0结合了WebDriver技术,支持多种浏览器包括移动浏览器,并且兼容多种编程语言。WebDriver使得测试脚本更为简洁,通过示例展示了如何使用WebDriver进行基本的网页搜索操作。

有一段时间没有关注Selenium了,最近浏览了下,Selenium已经出到2.0rc3了,最大的变化是WebDriver集成了进来

什么是WebDriver请看这篇wiki,介绍得很详细,http://code.google.com/p/selenium/wiki/FrequentlyAskedQuestions 

所以Selenium2.0其实就是Selenium 1.x+WebDriver。

WebDriver除了支持PC浏览器之外,最大的亮点是能够支持移动浏览器——WebDriverForMobileBrowsers  /

AndroidDriver  支持Android and iOS 

 

当然多种开发语言的优点还是保持着,看了下 WebDriver的例子,代码比过去的Selenium更简练,

 1  from  selenium  import  webdriver
 2  import  time
 3 
 4  if   __name__ == ' __main__ ' :
 5       #  Create a new instance of the Firefox driver
 6      driver  =  webdriver.Firefox()
 7      
 8       #  go to the google home page
 9      driver.get( " http://www.google.com " )
10      
11       #  find the element that's name attribute is q (the google search box)
12      inputElement  =  driver.find_element_by_name( " q " )
13      
14       #  type in the search
15      inputElement.send_keys( " Cheese! " )
16      
17       #  submit the form (although google automatically searches now without submitting)
18      inputElement.submit()
19      
20       #  the page is ajaxy so the title is originally this:
21       print  driver.title
22      
23       #  we have to wait for the page to refresh, the last thing that seems to be updated is the title
24       while   not  driver.title.startswith( " cheese! " ):
25           #  this is an infinite loop... should probably put some logic to break after x time
26           #  sleep for a second
27          time.sleep( 1 )
28      
29       #  You should see "cheese! - Google Search"
30       print  driver.title
31     

32     driver.quit()  


 

 

 

Selenium的启动,除了默认的方式

java -jar selenium-server.jar

 

对于公司内部的代理还可以使用

java -Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=www.google.cn -jar selenium-server.jar  

java -Dhttp.proxyHost=proxy -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=www.google.cn -jar selenium-server.jar  -avoidProxy

不过我比较喜欢新建一个firefox profile,用firefox.exe -ProfileManager创建 

java -jar selenium-server.jar -firefoxProfileTemplate "/home/oscarxie/.mozilla/firefox/binmn2bo.selenium" -multiWindow 

java -jar selenium-server.jar -firefoxProfileTemplate "/home/oscarxie/.mozilla/firefox/binmn2bo.selenium" 

 

PS:

开源应用架构之​Selenium WebDriver(上) 

http://seleniumhq.org/projects/ 

http://code.google.com/p/selenium/  

http://seleniumhq.org/docs/ 

http://code.google.com/p/selenium/w/list 

http://selenium.googlecode.com/svn/trunk/docs/api/py/index.html 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值