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