Skip to content

Instantly share code, notes, and snippets.

@tjmaher
Created December 21, 2015 17:18
Show Gist options
  • Select an option

  • Save tjmaher/a5c34b957c2f2135000e to your computer and use it in GitHub Desktop.

Select an option

Save tjmaher/a5c34b957c2f2135000e to your computer and use it in GitHub Desktop.
public class PurchaseOrderTest {
public WebDriver driver;
@BeforeClass
public void setUp(){
driver = new FirefoxDriver();
}
@Test(priority = 1)
public void navigateToAmazon(){
driver.get("http://www.amazon.com");
}
@AfterClass
public void tearDown(){
driver.quit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment