Home > Blockchain >  How to turn off remote debugging to open this site in IE?
How to turn off remote debugging to open this site in IE?

Time:09-22

I am automating an application in Microsoft Edge browser on Windows 11 system. How can I remove that from running browser instance. I also checked similar question asked on stackoverflow but didnt get much help to overcome this banner.

enter image description here

CodePudding user response:

From your description, I think you have configured the site in IE mode site list and tried to automate it in IE mode. It's the expected behavior that you see the error message because you're not using the right way to automate IE mode in Edge.

The right way to automate IE mode in Edge is using IE Driver instead of Edge Driver. For the detailed steps, please follow this guide: Use Internet Explorer Driver to automate IE mode in Microsoft Edge.

  • Related