Selenium RC For Python:教程1

來源:互聯網
上載者:User

Selenium是thoughtworks公司的一個整合測試的強大工具,關於它的好處網路隨處可以搜到,我就不一一介紹,在之前見到一個系列是Selenium Remote Control For Java,在這裡模仿一下,主要以Python來實現。一是我比較喜歡用Python,二是剛好可以練手,熟悉熟悉Python開發Selenium RC指令碼。

What is Selenium?
Selenium is a testing tool for web applications that uses JavaScript and Iframes to run tests directly in a browser. There are several test tools based on this technology: Selenium Core, Selenium IDE, Selenium Remote Control, and Selenium on Rails. 

 下面的是第一個例子:

在http://www.bitmotif.com/上點擊link=Test Page For Selenium Remote Control,檢查新頁面的標題

代碼from selenium import selenium
import unittest

class ExampleTest(unittest.TestCase):
    MAX_WAIT_TIME_IN_MS = 60000
    BASE_URL = "http://www.bitmotif.com"
    
    def setUp(self):
        self.verificationErrors = []     
        self.selenium = selenium("localhost", 4444, "*firefox3 E:/Program Files/Mozilla Firefox/firefox.exe", self.BASE_URL)
        self.selenium.start()
        
    def tearDown(self):
        self.selenium.stop()
        
    def testClinckinglink(self):
        sel = self.selenium
        sel.open(self.BASE_URL)
        sel.click("link=Test Page For Selenium Remote Control")
        sel.wait_for_page_to_load(self.MAX_WAIT_TIME_IN_MS)
        expectedTitle = u"Test Page For Selenium Remote Control « Bit Motif"
        #sel.get_title()
        self.assertEquals(expectedTitle, sel.get_title())
        
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.