Since IE browser is retired, can we run our scripts in Edge in IE mode?

Since IE browser is retired, can we run our scripts in Edge in IE mode?

Hey Toby-steed,

Yes, it is possible to directly test on IE through LambdaTest.

Hi

InternetExplorerOptions ieOptions = new InternetExplorerOptions(); ieOptions.setCapability(“platform”,“Windows 11”); ieOptions.attachToEdgeChrome(); ieOptions.ignoreZoomSettings(); WebDriver driver = new RemoteWebDriver(new URL(“http://{username}:{accesskey}@hub.lambdatest.com/wd/hub”),ieOptions);

You can also refer - Desired Capabilities in Selenium | LambdaTest