Last active
August 29, 2015 14:19
-
-
Save jsdevel/3f0e123101bb9e7ca253 to your computer and use it in GitHub Desktop.
selenium-test-using-mixins
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
| public class HomePageITest { | |
| @Test | |
| public we_should_be_able_to_search_from_the_homepage() { | |
| pageFactory.getHomePage() | |
| .get() | |
| .doSomethingOnTheHomePage() | |
| .clickSearchWidgetSubmitButton() | |
| .doSomethingElseOnTheHomePage() | |
| ; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment