javaselenium-webdriverwebdrivernew-window

How to switch to the new browser window, which opens after click on the button?


I have situation, when click on button opens the new browser window with search results.

Is there any way to connect and focus to new opened browser window?

And work with it, then return back to original (first) window.


Solution

  • You can switch between windows as below:

    // Store the current window handle
    String winHandleBefore = driver.getWindowHandle();
    
    // Perform the click operation that opens new window
    
    // Switch to new window opened
    for(String winHandle : driver.getWindowHandles()){
        driver.switchTo().window(winHandle);
    }
    
    // Perform the actions on new window
    
    // Close the new window, if that window no more required
    driver.close();
    
    // Switch back to original browser (first window)
    driver.switchTo().window(winHandleBefore);
    
    // Continue with original browser (first window)