Selenium: Python客户端配置

1.首先在这里下载Selenium RC,解压到C盘。

2. 在C:\selenium-remote-control-1.0.1\selenium-python-client-driver-1.0.1下把selenium.py拷贝到C:\Python26\Lib\site-packages

3. 现在录制或者手写的脚本就可以与浏览器交互了。

Selenium 现在存在2个版本,一个叫 selenium-core, 一个叫Selenium RC 。

selenium-core是使用HTML的方式来编写测试脚本,也可以使用Selenium-IDE来录制脚本,但是目前Selenium-IDE只有FireFox 版本。

Selenium RC是selenium-remote control 缩写,是使用具体的语言来编写测试类。他支持的语言很多,比如就可以使用我喜欢的Python。

首先在命令行里面切换目录到C:\selenium-remote-control-1.0.1\selenium-server-1.0.1,然后运行 java -jar selenium-server.jar

要使用Selenium RC,必须启动这个server。 

 

注意:

Selenium 是模仿浏览器的行为的,使用JavaScript和浏览器交互。当你运行测试类的时候,你就会发现Selenium会打开一个浏览器,然后浏览器执行你的操作。

第一个例子:在google.com上搜索hello world,注意,对于喜欢设置用google.cn的同志,记得改为google.com

ExpandedBlockStart.gif 代码
from  selenium  import  selenium
import  unittest, time, re

class  TestGoogle(unittest.TestCase):
    
def  setUp(self):
        self.verificationErrors 
=  []
        self.selenium 
=  selenium( " localhost " 4444 " *iexplore " " http://www.google.com/webhp " )
        self.selenium.start()
    
    
def  test_google(self):
        sel 
=  self.selenium
        sel.open(
" http://www.google.com/webhp " )
        sel.type(
" q " " hello world " )
        sel.click(
" btnG " )
        sel.wait_for_page_to_load(
" 5000 " )
        self.assertEqual(
" hello world - Google Search " , sel.get_title())
        
# self.assertEqual(u'hello world - Google \u641c\u7d22', sel.get_title())
         print  sel.get_title()
    
#     def tearDown(self):
#
        self.selenium.stop()

if   __name__   ==   " __main__ " :
    unittest.main()


 


 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值