Created
July 6, 2020 05:19
-
-
Save KrishnB/4caeb7eb2e0ce32bcc7bad1c2ac85795 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
@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