Last active
May 22, 2019 07:03
-
-
Save martinschneider/c5623f341c522f58ddc85d1cf52701b7 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
@TestInstance(Lifecycle.PER_CLASS) | |
public class LoginTest05 extends CarousellBaseTest { | |
@Test | |
public void testLogin() { | |
WelcomePage welcome = new WelcomePage(driver); | |
welcome.goToLogin(); | |
LoginPage login = new LoginPage(driver); | |
login.login(username, password); | |
HomePage home = new HomePage(driver); | |
assertThat(home.canISell()).as("sell button visible").isEqualTo(true); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment