Beispiel #1
0
 public static SeleneElement S(this SeleneElement selement, By locator)
 {
     return(selement.Find(locator));
 }
Beispiel #2
0
 public static SeleneElement S(this SeleneElement selement, string cssSelector)
 {
     return(selement.Find(cssSelector));
 }
Beispiel #3
0
 public void ValidateNoRecords()
 {
     TableResults.Find(By.XPath(".//tbody//tr//td[2]"))
     .Should(Have
             .ExactText("No attendance records to display"));
 }