Skip to content

Instantly share code, notes, and snippets.

@nadvolod
Created May 3, 2016 22:43
Show Gist options
  • Save nadvolod/9203d7164759205d083c682572c9b8cf to your computer and use it in GitHub Desktop.
Save nadvolod/9203d7164759205d083c682572c9b8cf to your computer and use it in GitHub Desktop.
WebDriverWait class definition
namespace OpenQA.Selenium.Support.UI
{
//
// Summary:
// Provides the ability to wait for an arbitrary condition during test execution.
public class WebDriverWait : DefaultWait<IWebDriver>
{
public WebDriverWait(IWebDriver driver, TimeSpan timeout);
public WebDriverWait(IClock clock, IWebDriver driver, TimeSpan timeout, TimeSpan sleepInterval);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment