I am using simple modal dialog by Eric Martin. And have defined a function e.g
function confirm(message, options) {....
}
To customize all confirm dialogs. Its working nicely accross all the browsers.Except when I enable Selenium IDE ,my custom confirm dialog function fails to capture "options" parameters and firefox console echos like this:
options is undefined callback=options.callback;
Error When Selenium IDE is visible
Normal Behaviour When Selenium IDE is closed
Please help me sort out this issue so I should able to run selenium tests.
current possible solution:
It revealed to me that selenium IDE recorder is also overriding the various functions. Current possible quick way-out from this bug is to rename confirm() function and its references :(