Unable to close the lightbox/modal on goibibo.com | Selenium Forum
M
Posted on 26/01/2017
Hi Guys,

I have been stuck badly and unable to close the modal/lightbox that displayed on the goibibo website. Script is unable to find the close button on the modal. Could you please help me on this?

My script below:-
System.setProperty("webdriver.chrome.driver", "E:\\Drivers\\chromedriver.exe");
driver = new ChromeDriver();
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);

driver.get("https://www.goibibo.com/");
driver.findElement(By.xpath("//*[@id='webklipper-publisher-widget-container-notification-close-div']")).click();

Image for reference --- [attachment=0:1h4nq26x]issue.jpg[/attachment:1h4nq26x]

M
Replied on 26/01/2017

This popup is in "iframe".

you should switch to "frames" using

driver.switchto.frames(" ");