Skip to content

Instantly share code, notes, and snippets.

@eliasnogueira
Created January 27, 2020 08:04
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 eliasnogueira/d6254ad1a1934818e3c9fbbfe656aee3 to your computer and use it in GitHub Desktop.
Save eliasnogueira/d6254ad1a1934818e3c9fbbfe656aee3 to your computer and use it in GitHub Desktop.
public class MyTestWithBaseTest extends BaseTest {
@Test
public void myTest() {
driver.get("http://eliasnogueira.com");
}
@BeforeMethod
@Override
public void setup() {
super.setup();
driver.manage().window().fullscreen();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment