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|||||

-
Could you share actual navigation URL to reach that page?Saurabh Gaur– Saurabh Gaur2016-08-30 12:03:59 +00:00Commented Aug 30, 2016 at 12:03
-
and steps to navigate to this popup??Saurabh Gaur– Saurabh Gaur2016-08-30 12:35:14 +00:00Commented 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.Saurabh Gupta– Saurabh Gupta2016-08-30 12:38:06 +00:00Commented 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.SaschaM78– SaschaM782016-08-30 12:38:43 +00:00Commented Aug 30, 2016 at 12:38
Add a comment
|
1 Answer
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...