You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am making the first forays to implement template framework based on Jasmine and FuncUnit for UI testing. I am launching browsers using karma-*-launcher(s) and now I run into "blocked popups" issue. To be more detailed, default browser profile has popups blocker enabled, that results into "FuncUnit.win is null" error in FF and similar errors in other browsers when running FuncUnit (cause browser blocks opening both new tabs and new windows).
The problem can be workarounded by adding
+'user_pref("dom.disable_open_during_load", false);\n';
as a 8th string of firefox-launcher's index.js file.
The same issue occurs in other browser launchers as well (Chrome).
Sample project that reproduces the issue attached.
It would be fine if you do one of the following to fix the issue:
Just include the string above and similar to index.js of the correspondent launchers
Add functionality to load profile PROPS from external file
Add functionality to pick up profiles in FF launcher
Would you?
The text was updated successfully, but these errors were encountered:
I am making the first forays to implement template framework based on Jasmine and FuncUnit for UI testing. I am launching browsers using karma-*-launcher(s) and now I run into "blocked popups" issue. To be more detailed, default browser profile has popups blocker enabled, that results into "FuncUnit.win is null" error in FF and similar errors in other browsers when running FuncUnit (cause browser blocks opening both new tabs and new windows).
The problem can be workarounded by adding
+'user_pref("dom.disable_open_during_load", false);\n';
as a 8th string of firefox-launcher's index.js file.
The same issue occurs in other browser launchers as well (Chrome).
Sample project that reproduces the issue attached.
It would be fine if you do one of the following to fix the issue:
Would you?
The text was updated successfully, but these errors were encountered: