Selenium: Python用戶端配置

來源:互聯網
上載者:User

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

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.