Skip to content

Instantly share code, notes, and snippets.

@qagoose
Last active April 8, 2018 14:46
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/d88619a10ba7c9af5e1830c8b8d5a892 to your computer and use it in GitHub Desktop.
Save qagoose/d88619a10ba7c9af5e1830c8b8d5a892 to your computer and use it in GitHub Desktop.
public class LoginTest {
// Simplified JUnit test structure, don't write tests like this!
@Test
public void simpleLoginTest() {
WebDriver driver = new ChromeDriver();
LoginPage loginPage = new LoginPage(driver);
loginPage.clickLoginButton();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment