Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created October 23, 2017 18:56
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/bf15346b19002a197d9576f11c101ad6 to your computer and use it in GitHub Desktop.
Save angelovstanton/bf15346b19002a197d9576f11c101ad6 to your computer and use it in GitHub Desktop.
public partial class BingMainPage : AssertedNavigatablePage
{
public BingMainPage(IWebDriver driver) : base(driver)
{
}
public override string Url => @"http://www.bing.com/";
public void Search(string textToType)
{
SearchBox.Clear();
SearchBox.SendKeys(textToType);
GoButton.Click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment