Exemplo n.º 1
0
 public static void WaitElementIsVisible(IWebElement element)
 {
     new WebDriverWait(WebDriverUtil.GetWebDriver(), TimeSpan.FromSeconds(WebDriverWaitConstants.TimeOut))
     .Until(WaitElementVisible(element));
 }
Exemplo n.º 2
0
 public static void WaitElementIsVisible(By locator)
 {
     new WebDriverWait(WebDriverUtil.GetWebDriver(), TimeSpan.FromSeconds(WebDriverWaitConstants.TimeOut)).Until(ExpectedConditions.ElementIsVisible(locator));
 }