zoukankan      html  css  js  c++  java
  • 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 RCselenium-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

    代码
    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()



     
    作者:Shane
    出处:http://bluescorpio.cnblogs.com
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    SVN——Jenkins自动发布
    IIS之虚拟目录学习
    SVN迁移
    通过配置host,自定义域名让本地访问
    比较两个时间的大小 举例:CompareDate("12:00","11:15")
    [转]SQL Server 批量完整备份
    js前台编码,asp.net后台解码 防止前台传值到后台为乱码
    前端将图片二进制流显示在html端
    【转】解析<button>和<input type="button"> 的区别
    利用bat批处理——实现数据库的自动备份和删除
  • 原文地址:https://www.cnblogs.com/bluescorpio/p/1634573.html
Copyright © 2011-2022 走看看