Uncategorized
Devintersection sessions Marcel de Vries 22 Nov, 2016
Recently Microsoft added the capability to CodedUI to test on the Edge browser. For this they extended the cross browser playback capability. This uses Selenium under the hood. So the steps to make this work are as follows:
And finally in the code you need to switch the browser you want to launch. You need to provide the following name to start edge:”MicrosoftEdge”
BrowserWindow.CurrentBrowser = “MicrosoftEdge”;
var browserWindow =
BrowserWindow.Launch(new Uri("<your URl here>"));
And that is it!
Happy testing on Edge