Rakesh Sharma
Rakesh Sharma

Reputation: 3

How to Handle pop ups in selenium Webdriver

I want to handle pop up that coming after submitting the data on a page, pop up like OK And Cancel . (in Java )

Please check attached image

Note: i tried Alert and this #8244723

Thanks pop up like attached image

Upvotes: 0

Views: 823

Answers (1)

Maninder
Maninder

Reputation: 174

You can use following one line code when that pop will arise:

driver.switchTo().alert().accept();

Upvotes: 1

Related Questions