d = getDriver();
d.get(url + "?session2=value2");
// Grab set of session cookies
secondSessionCookies = d.manage().getCookies();
// Manually quit the current Driver and create a new one
d.quit();
}
@Test
public void shouldCreateASeparateSessionWithEveryNewDriverInstance() {
// No cookie of the new Session can be found in the cookies of the old Session