Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created October 2, 2016 16:31
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/e6041764349a38ea982b1718e161d5ad to your computer and use it in GitHub Desktop.
Save angelovstanton/e6041764349a38ea982b1718e161d5ad to your computer and use it in GitHub Desktop.
[TestClass,
ExecutionEngineAttribute(ExecutionEngineType.TestStudio, Browsers.Firefox)]
public class BingTests : BaseTest
{
[TestMethod]
public void SearchForAutomateThePlanet()
{
var bingMainPage = this.Container.Resolve<BingMainPage>();
bingMainPage.Navigate();
bingMainPage.Search("Automate The Planet");
bingMainPage.AssertResultsCountIsAsExpected(264);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment