Last active
December 11, 2017 10:49
-
-
Save angelovstanton/e9d308b0e41a46ff81e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[TestClass] | |
[ExecutionBrowser(BrowserType = BrowserTypes.Firefox)] | |
public class SearchEngineTestsClassicObserver : BaseTest | |
{ | |
[TestMethod] | |
[ExecutionBrowser(BrowserType = BrowserTypes.Chrome)] | |
public void SearchTextInSearchEngine_First_Observer() | |
{ | |
B.SearchEngineMainPage searchEngineMainPage = new B.SearchEngineMainPage(Driver.Browser); | |
searchEngineMainPage.Navigate(); | |
searchEngineMainPage.Search("Automate The Planet"); | |
searchEngineMainPage.ValidateResultsCount("RESULTS"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment