Supplies a set of common conditions that can be waited for using WebDriverWait.
Inheritance Hierarchy

OpenQA.Selenium.Support.UI ExpectedConditions
Namespace: OpenQA.Selenium.Support.UI
Assembly: WebDriver.Support (in WebDriver.Support.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax
Examples
IWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(3)) IWebElement element = wait.Until(ExpectedConditions.ElementExists(By.Id("foo")));
See Also