Skip to content

Instantly share code, notes, and snippets.

@angiejones
Created October 31, 2020 20:32
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 angiejones/dd3f9fce6634fbd2af5c8f61fba6b2dd to your computer and use it in GitHub Desktop.
Save angiejones/dd3f9fce6634fbd2af5c8f61fba6b2dd to your computer and use it in GitHub Desktop.
Window Management in Selenium 4
driver.get("https://applitools.com/");
driver.manage().addCookie(new Cookie("whoisthis", "angie"));
driver.switchTo().newWindow(WindowType.TAB);
driver.get("https://testautomationu.com"); //this tab does not have the 'whoisthis' cookie
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment