@After public void tearDown() throws Exception { driver.quit(); String verificationErrorString = verificationErrors.toString(); if (!"".equals(verificationErrorString)) { fail(verificationErrorString); } }
@Before public void setUp() throws Exception { FirefoxBinary binary = new FirefoxBinary(new File(FIREFOX_LOCATION)); FirefoxProfile profile = new FirefoxProfile(); driver = new FirefoxDriver(binary, profile); RegisterCustomerPage registerCustomerPage = new RegisterCustomerPage(driver); this.customerId = registerCustomerPage .registerCustomer(FIRSTNAME, LASTNAME, ADDRESS, ZIP, CITY, EMAIL, PASSWORD) .getCustomerId(); driver.quit(); driver = new FirefoxDriver(binary, profile); }
@After public void tearDown() throws Exception { driver.quit(); }
@After public void end() { driver.quit(); }
@After public void tearDown() throws Exception { driver.quit(); BlaHelper.deleteCustomer(customerId); }