angularjs - Using browser.get causes asynchronous script timeout -
i'm using protractor automation testing , encountered following behavior: when try use browser.get load certin page page loaded following error: error while running testforangular: asynchronous script timeout: result not received in 11 seconds. i use browser.get in following way: beforeeach(function() { browser.ignoresynchronization = false; browser.get('https://.../automation_vf'); browser.ignoresynchronization = true; },60000); it(data.testproperties.description, function () { browser.executescript('return remoteactions;') .then(function(remoteaction) { browser.executeasyncscript(function(remoteaction) { var callback = arguments[arguments.length - 1]; visualforce.remoting.manager.invokeaction(remoteaction.clearalldata, function (res, ev) { callback(res); }, { buffer: false, escape: false, timeout: 15000 }); },re...