Selenium

3. Selenium API參考手冊【ZZ】

 大家在編寫測試案例想查閱Selenium API說明時,可以查閱本文,否則請跳過!

 (註:這裡API版本比較老,新版本的Selenium的API在這裡不一定能找到。)

Selenium API說明文檔

(轉載自:http://wiki.javascud.org/display/springs/SeleniumRefrence)

Commands (命令)

1. Element Locators (元素定位器)

2. String Matching Patterns (字符串匹配模式)

3. Select Option Specifiers (Select選項指定器)

Actions

描述了用戶所會作出的操作。
Action 有兩種形式: action和actionAndWait, action會立即執行,而actionAndWait會假設需要較長時間才能得到該action的相響,而作出等待,open則是會自動處理等待時間。

Assertions

允許用戶去檢查當前狀態。兩種模式: Assert 和 Verify, 當Assert失敗,則退出測試;當Verify失敗,測試會繼續運行。

Parameters and Variables

參數和變量的聲明範圍由簡單的賦值到JavaScript表達式賦值。
Store,storeValue 和storeText 為下次訪問保存值。
在Selenium內部是用一個叫storeVars的map來保存變量名。