I recently updated to Visual Studio 2013 and IE11 and now my Automated UI tests are no longer working...
Issue: NavigateTo no longer appears to be working. The browser launches but the page simply stays on "Blank".
Any ideas on how to fix?
Code:
Issue: NavigateTo no longer appears to be working. The browser launches but the page simply stays on "Blank".
Any ideas on how to fix?
Code:
// Initialize the settingsSettings mySettings = new Settings();// Set the default browsermySettings.Web.DefaultBrowser = BrowserType.InternetExplorer;// Create the manager objectManager myManager = new Manager(mySettings);// Start the managermyManager.Start();// Launch a new browser instance. [This will launch an IE instance given the setting above]myManager.LaunchNewBrowser();myManager.ActiveBrowser.WaitUntilReady();// Navigate to a certain web pagemyManager.ActiveBrowser.NavigateTo("http://www.thewebsite.com");//Never actually loads the website above. )c: