2011/05/06

Selenium Basic

下載安裝 Sauce Builder 後,就可以在 Firefox 裡,使用這個 IDE 來錄製測試動作,還有匯出成 Python 或自己喜歡的程式碼,結果類似下列內容,可以在 local 執行:
self.selenium = selenium(
"localhost", 4444, "*chrome", "http://google.com/")

想把上述程式碼改在雲端執行,可藉助 OnDemand 服務,並把內容修改成下列這樣:
self.selenium = selenium(
'http://ondemand.saucelabs.com',
80,
"""{
"username": "USERNAME",
"access-key": "ACCESS_KEY",
"os": "Windows 2003",
"browser": "firefox",
"browser-version": "3.",
"name": "This is an example test"
}""",
'http://google.com')

這樣一來,就不必自己跑 Selenium RC 囉。

沒有留言: