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
代码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()
运维网声明
1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网 享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com