1. 程式人生 > >驗證是否登入成功——測試案例

驗證是否登入成功——測試案例

  • Settings裡面包括:所用的庫Library  (Selenium2Library)、Test.Setup(Open.Browser..........具體地址........所用的瀏覽器(Chrome))
  • Test.Teardown(Close Browser)
  • Test.Case裡面包括:案例名稱(驗證是否登入成功)、Input.Text(使用者名稱輸入框的id或name......具體的使用者名稱)、Input.Password(密碼輸入框的id或name.......具體的密碼)、Click.Element(登陸按鈕的id或name或Xpath)
  • 還用到了:Title.Should.Be、Page.Should.Contain、Wait Until Element Is Visible
  • Wait Until Element Is Visible.............(locator,timeout ),一定要用這個,用在Page.Should.Contain之前,因為開啟平臺是需要很短的時間的,在這個很短的時間中要監測定位元素。
  • locator:包括id、name、XPath、CCS。