0

Please Help me how to click on button on Popup Window in Selenium Webdriver by using Java, i have apply more and more code but i am not success, please help me . I have also attached Please see a lock and give me reply my answer please||||| enter image description here

4
  • Could you share actual navigation URL to reach that page? Commented Aug 30, 2016 at 12:03
  • and steps to navigate to this popup?? Commented Aug 30, 2016 at 12:35
  • Go To Course Page, click on Cooking Fundamentals I, Click on Mise en Place after that see this popup. Commented Aug 30, 2016 at 12:38
  • Why not google for your problem? It would have lead you back to this or this answered questions about the same topic. Commented Aug 30, 2016 at 12:38

1 Answer 1

1

Finally i got it answer

    driver.findElement(By.xpath("/html/body/div[1]/div[1]/div/div[4]/div[2]/div[2]/div[2]/div[1]/div/div[3]/div[1]/div/a[15]/div/img")).click();
    Set<String> RecipeHandle = driver.getWindowHandles();
     System.out.println(RecipeHandle);  
     for (String handle1 : driver.getWindowHandles()) 
     {
            System.out.println(handle1);
            driver.switchTo().window(handle1);              
     }
     driver.findElement(By.xpath("/html/body/div[1]/div[1]/div/div[4]/div[2]/div/div/div[2]/div[1]/div/div[2]/div[1]/a[4]")).click();
    driver.findElement(By.xpath("/html/body/div[1]/div[1]/div/div[4]/div[2]/div/div/div[2]/div[1]/div/div[2]/div[1]/div[3]/div/div/div[2]/button")).click();
    driver.switchTo().window(handle);
    driver.manage().timeouts().implicitlyWait(5000, TimeUnit.SECONDS);
    Thread.sleep(3000);**

Thanks for erveryone who responding me...

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.