Created
October 20, 2018 21:12
-
-
Save johnmmoss/6b129b3b91d2b3773196fe2201755dc0 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
| [BeforeScenario] | |
| public void BeforeScenario() | |
| { | |
| // At the begining of the scenario, we are on the homepage | |
| var webDriver = FeatureContext.Current.Get<IWebDriver>(); | |
| var homePage = new HomePage(webDriver); | |
| ScenarioContext.Current.Set<HomePage>(homePage); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment