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