Skip to content

Instantly share code, notes, and snippets.

@qagoose
Created March 23, 2019 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qagoose/ac65f605ac9689a48aa742c15b0495bf to your computer and use it in GitHub Desktop.
Save qagoose/ac65f605ac9689a48aa742c15b0495bf to your computer and use it in GitHub Desktop.
public void registerUserAndGetToDashboard(String username) {
// Register user
portal.pages.registrationPage.register(username);
// Accept terms and conditions
portal.pages.registrationPage.acceptTermsAndConditions();
// Get through welcome pages
portal.pages.tutorialPage.exitTutorial();
// Check dashboard page loaded
assertTrue(pages.dashboardPage.hasLoaded());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment