--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CAJY5XAfj3u0wUwcU9RfqaAtGjb-HT%2B_K_gxS28LvtZoukGJ_CA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CABym8RK4wKh7efNRNqx9s6WH-Q64zObwFuR7oT0ME24Q6QBj%3DA%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CAJY5XAfHdf8V4TrsHbcdLLVcXj-ghbhXf%2BhCpv_F6U%2Bj%3D0jSMw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CAJY5XAfHdf8V4TrsHbcdLLVcXj-ghbhXf%2BhCpv_F6U%2Bj%3D0jSMw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CABym8RKNooVyJ-FcZRecOykBz3hTvGksJjKWuFLty5xvV8d7dg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CAKOTObNtZ%2BVH1gyR5DQRm5ce4a8%3DG5%2BqMLFX_SbSDsycQ207mg%40mail.gmail.com.
I have already applied explicit wait. But it didn't work.
On Wed, 17 Apr, 2019, 07:58 ankit garg <ankit...@gmail.com wrote:
Getting below error:org.openqa.selenium.NoSuchFrameException: No frame element found by name or id webklipper-publisher-widget-container-notification-frame
On Tue, Apr 16, 2019 at 10:50 PM Karthik Deepan <karthik...@gmail.com> wrote:
It seems there is an iframe which has to handled before we click on Close buttondriver.get("https://www.goibibo.com/");driver.switchTo().frame("webklipper-publisher-widget-container-notification-frame");WebDriverWait wait = new WebDriverWait(driver,20);wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//a[@id='webklipper-publisher-widget-container-notification-close-div']"))).click();
On Tue, Apr 16, 2019 at 10:22 PM Akshay Goel <goelak...@gmail.com> wrote:
org.openqa.selenium.ElementNotVisibleException: element not visible
On Tue, 16 Apr 2019 at 22:03, Karthik Deepan <karthik...@gmail.com> wrote:
You need to write script based on what you do manually.In this case, you have to click on close button on the notificationUse the below codedriver.findElement(By.xpath("//i[contains(@class,'we_close')]")).click();
On Tue, Apr 16, 2019 at 9:50 PM Akshay Goel <goelak...@gmail.com> wrote:
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to seleniu...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CAJY5XAfj3u0wUwcU9RfqaAtGjb-HT%2B_K_gxS28LvtZoukGJ_CA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to seleniu...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CABym8RK4wKh7efNRNqx9s6WH-Q64zObwFuR7oT0ME24Q6QBj%3DA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to seleniu...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CAJY5XAfHdf8V4TrsHbcdLLVcXj-ghbhXf%2BhCpv_F6U%2Bj%3D0jSMw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to seleniu...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/CABym8RKNooVyJ-FcZRecOykBz3hTvGksJjKWuFLty5xvV8d7dg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to seleniu...@googlegroups.com.
public static void main(String[] args){
System.setProperty("webdriver.chrome.driver","C:\\WebDrivers\\chromedriver.exe");WebDriver robot = new ChromeDriver();robot.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);robot.manage().window().fullscreen();robot.manage().deleteAllCookies();robot.get("https://www.goibibo.com/");robot.switchTo().frame(robot.findElement(By.id("webklipper-publisher-widget-container-notification-frame")));robot.findElement(By.id("webklipper-publisher-widget-container-notification-close-div")).click();}}
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/3c541ce4-91ba-4f55-86b2-c6c6e6d7eace%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.