When running a selenium IDE script to autofill a form, I receive the following:
[error] There was an unexpected Alert! [Javascript Error :MY-SUPER-TOP-SECRET-URL line 37 Error: NS_ERROR_XPC_SECURITY_MANAGER_VETO: ]
When I checked line 37, it is a tiny block of code setting a global bool, wrapped in a jQuery click() anon function.
parent.jQuery(parent.document).click(function () {
parent.sharedVars.enableGenderKey = false;
});
I am running jQuery 1.8.3. Any tips? Interestingly, the form DOES fill successfully once, but on attempt 2 and above, it errors.