Guest User

Untitled

a guest
Oct 24th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. [TestClass]
  2. public class BingTests
  3. {
  4. private IWebDriver _driver;
  5.  
  6. [TestInitialize]
  7. public void TestInitialize()
  8. {
  9. Driver.StartBrowser();
  10. }
  11.  
  12. [TestCleanup]
  13. public void TestCleanup()
  14. {
  15. Driver.StopBrowser();
  16. }
  17.  
  18. [TestMethod]
  19. public void Singleton_SearchTextInBing_First()
  20. {
  21. SBingMainPage.Instance.Navigate();
  22. SBingMainPage.Instance.Search("Automate The Planet");
  23.  
  24. SBingMainPage.Instance.AssertResultsCount("236,000 RESULTS");
  25. }
  26. }
Add Comment
Please, Sign In to add comment