How to use explicit wait in c#?

How to use explicit wait in c#?

Hi Joe,

You can follow below code snippet to explicit wait in C#:

IWebDriver driver = new FirefoxDriver();
driver.Url = "http://somedomain/url_that_delays_loading";
WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));