Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created January 19, 2017 19:19
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/e2db8061d5e4b26ed5cf024d5323cec6 to your computer and use it in GitHub Desktop.
Save angelovstanton/e2db8061d5e4b26ed5cf024d5323cec6 to your computer and use it in GitHub Desktop.
public static class BingMainPageAsserter
{
public static void AssertResultsCountIsAsExpected(this BingMainPage page, int expectedCount)
{
Assert.AreEqual(page.ResultsCountDiv.Text, expectedCount, "The results count is not as expected.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment