Currently, I am utilizing selenium IDE, which is only available on Firefox, to perform automated testing on a website that I am developing. While navigating through the site with selenium and filling out a form, a 'window.alert()' function is triggered by a button click. My set of commands with selenium looks like this:
open /
clickAndWait document.form1.Action[1]
select stuff
type stuff
etc, etc
click name=myPreview
Initially, when I record and run the script for the first time, everything works smoothly. However, upon rerunning the script, both window.alert
and alert
functions cease to work from the console or anywhere else. I have tried debugging it but without any success.