Esempio n. 1
0
 public GoogleHomePage setSearchTextBox(string searchKeyword, Enums.TimeInSeconds time)
 {
     wrapper.sendKeys(searchTextBox, searchKeyword, (int)time);
     return(new GoogleHomePage(driver));
 }
Esempio n. 2
0
 public GoogleSearchResultsPage clickSearchButton(Enums.TimeInSeconds time)
 {
     wrapper.clickElement(searchButton, (int)time);
     return(new GoogleSearchResultsPage(driver));
 }
Esempio n. 3
0
 public void verifySearchResults(string searchKeyword, Enums.TimeInSeconds time)
 {
     Assert.True(wrapper.findElement(By.PartialLinkText(searchKeyword), (int)time).Displayed);
 }