Код: Выделить всё
Set allWindows = driver.getWindowHandles();
for(String currentWindow : allWindows){
driver.switchTo().window(currentWindow);
}
Подробнее здесь: https://stackoverflow.com/questions/190 ... fic-window
Код: Выделить всё
Set allWindows = driver.getWindowHandles();
for(String currentWindow : allWindows){
driver.switchTo().window(currentWindow);
}