Reputation: 3
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
Reputation: 174
You can use following one line code when that pop will arise:
driver.switchTo().alert().accept();
Upvotes: 1