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