Skip to content

Instantly share code, notes, and snippets.

@jsdevel
Last active August 29, 2015 14:19
Show Gist options
  • Select an option

  • Save jsdevel/3f0e123101bb9e7ca253 to your computer and use it in GitHub Desktop.

Select an option

Save jsdevel/3f0e123101bb9e7ca253 to your computer and use it in GitHub Desktop.
selenium-test-using-mixins
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