Published
- 1 min read
java selenium open new tab
The solution for this is noted below
java selenium open new tab
Solution
// This will open the new tab
driver.switchTo().newWindow(WindowType.TAB);
// This will open the new window
driver.switchTo().newWindow(WindowType.WINDOW);
Try other methods by searching on the site. That is if this doesn’t work