Using protractor, I want to load an external url (e.g. https://www.stackoverflow.com/) after performing some actions on an angular page. If I try with the following code snippet, it hangs the test execution completely
browser.waitForAngularEnabled(false);
browser.driver.get('https://www.stackoverflow.com/');
Can anyone please help me out what might be going wrong here?