How can I replace a navigator object in a popup?
I can replace the navigator with page.initializedcallback, but it does not affect the pop-ups.
In PhantomJS, I can use something like this:
page.onPageCreated = function (newPage) {
newPage.onInitialized = function () {
newPage.evaluate(function() {
window.navigator = {}
});
}
};
How to do it on CasperJS?
user4535610
source
share