How to check pop-up present in a page or not?

260 Views Asked by At

How to check "popup present" in a page or not?

Suppose in my 1st run pop up present in a page, but in my second run it doesn't appear on page? I am not expecting handling popups?

1

There are 1 best solutions below

0
On

you can try this bellow code

//define your main window
String mainWindowHandler = driver.getWindowHandle();
//handle your popup
Set<String> popup = driver.getWindowHandles();

for (String winHandle : popup) {
    if(!winHandle.equals(mainWindowHandler)) {
        //switch to popup
        driver.switchTo().window(winHandle);
        System.out.println(driver.getTitle());
        //close popup, or your action
        driver.close();
        //back to main window
        driver.switchTo().window(mainWindowHandler);
    }
}