Skip to content

Instantly share code, notes, and snippets.

@KrishnB
Created July 6, 2020 05:19
Show Gist options
  • Save KrishnB/4caeb7eb2e0ce32bcc7bad1c2ac85795 to your computer and use it in GitHub Desktop.
Save KrishnB/4caeb7eb2e0ce32bcc7bad1c2ac85795 to your computer and use it in GitHub Desktop.
@Guice(StaleHandlerModule.class)
public class LoginTest extends BaseTest {
@Inject
User userProvider;
@Test
public void userLogin() {
LoginPage loginPage = getPage(LoginPage.class);
User user = userProvider.init();
loginPage.login(user.getCredentials());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment