Selenium IDE驗證點

Selenium IDE驗證點

我們還開發了測試用例需要檢查一個Web頁面的屬性。這需要維護和驗證命令。有兩種方法可以驗證點到任何腳本

插入記錄模式中的任何驗證點單擊「右鍵」元素,並選擇「Show all Available Commands」,如下圖所示。

selenium

我們也可以通過執行「右鍵」,然後選擇「Insert New Command」插入一個命令。

selenium

插入新的命令後,單擊「Command」下拉列表,選擇如下圖所示的命令的列表提供適當的驗證點

selenium

下面是主要用於驗證的命令,這有助於我們檢查一個特定步驟已通過或失敗。

  • verifyElementPresent

  • assertElementPresent

  • verifyElementNotPresent

  • assertElementNotPresent

  • verifyText

  • assertText

  • verifyAttribute

  • assertAttribute

  • verifyChecked

  • assertChecked

  • verifyAlert

  • assertAlert

  • verifyTitle

  • assertTitle

同步點

在程序執行時,應用程序可能由服務器的負載情況來決定響應速度,因此,它必需要應用和腳本同步。下面是幾個命令,我們可以用它來確保腳本和應用程序同步。

  • waitForAlertNotPresent

  • waitForAlertPresent

  • waitForElementPresent

  • waitForElementNotPresent

  • waitForTextPresent

  • waitForTextNotPresent

  • waitForPageToLoad

  • waitForFrameToLoad