How to automatically handle alerts with Splinter in Python

492 Views Asked by At

I am using the Python wrapper for Selenium, Splinter, to make purchases on an online store. Randomly, the browser throws an UnexpectedAlertPresentException. I don't know where in my process this error will be thrown, and it seems ridiculous to check for this alert and dismiss it all the time. Is there a way to specify to the driver that alerts should be automatically dismissed?

1

There are 1 best solutions below

0
On

You can override the window.alert method using browser.execute_script. See for eg. http://itreallymatters.net/post/1482786902/testing-webpages-with-javascript-popups-correctly#.VUvFhNS1Gko