use of org.openqa.selenium.WebDriver.Options in project webpieces by deanhiller.
the class TestLesson4WithSelenium method tearDown.
@After
public void tearDown() {
Options manage = driver.manage();
manage.deleteAllCookies();
driver.close();
driver.quit();
}