Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created May 24, 2017 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/269468717ece857bb861aa8186b5eb38 to your computer and use it in GitHub Desktop.
Save angelovstanton/269468717ece857bb861aa8186b5eb38 to your computer and use it in GitHub Desktop.
public partial class BingMainPage
{
private readonly IWebDriver _driver;
private readonly string _url = @"http://www.bing.com/";
public BingMainPage(IWebDriver browser) => _driver = browser;
public void Navigate() => _driver.Navigate().GoToUrl(_url);
public void Search(string textToType)
{
SearchBox = textToType;
GoButton.Click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment