python學習(一)Use Python to Drive Selenium RC

來源:互聯網
上載者:User

Selenium RC支援多種程式設計語言驅動用戶端瀏覽器,這裡主要介紹使用Python在Windows下驅動Selenium RC。Python是一種物件導向的解釋性的電腦程式設計語言。

1. 準備工作

安裝jdk。jdk-6u10-rc2-bin-b32-windows-i586-p-12_sep_2008.exe

安裝python。python-2.7.2.msi

下載selenium RC。selenium-remote-control-1.0.3

2.啟動selenium server。解壓selenium RC ,在selenium-server.jar目錄下通過運行命令java -jar selenium-server.jar -interactive啟動服務。

可以通過寫批處理指令碼,啟動。如下:

@echo off
title Selenium Server
D:
cd D:\selenium\selenium-remote-control-1.0.3\selenium-server-1.0.3
java -jar selenium-server.jar -interactive

3.在IE上搜尋hello world為例:

View Code

from selenium import selenium
import unittest

class Untitled(unittest.TestCase):
def setUp(self):
self.verificationErrors = []
self.selenium = selenium("localhost", 4444, "*iexplore", "http://www.google.com/webhp")
self.selenium.start()

def test_untitled(self):
sel = self.selenium
sel.open("http://www.google.com.hk/")
sel.type("q", "hello world")
sel.click("name=btnG")
sel.wait_for_page_to_load(8000)
self.assertEqual("hello world - Google 搜尋",sel.get_title())

#def tearDown(self):
#self.selenium.stop()
#self.assertEqual([], self.verificationErrors)

if __name__ == "__main__":
unittest.main()

這裡,僅使用*iexplore則表示瀏覽器安裝在預設的路徑,即IE安裝在"C:\Program Files\Internet Explorer\iexplore.exe",如果不是安裝在預設的路徑,需要指明瀏覽器安裝的地址,如:"*firefox D:\Program Files\Mozilla Firefox\\firefox.exe"。

"def tearDown(self):
    self.selenium.stop()"

這段表示瀏覽器運行結束後直接關閉瀏覽器,這裡可以注釋掉。

在python上點擊F5開始運行python代碼。通過selenium直接調用IE瀏覽器進行用戶端運行。

同時命令列視窗顯示Selenium Server進行的每個步驟操作。

note:使用firefox瀏覽器時需注意,目前Selenium RC不支援firefox3.0版本,不管是使用"*chrome"還是"*firefox",都無法把Firefox調出;但是如果機器上使用的Firefox是低於3.0版本,那麼可以直接使用"*chrome"這個參數。

在運行之前,需要將Firefox中的代理設定成和Selenium Server一致,Localhost,連接埠為4444。 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.