I can open an instance of Edge in excel using VBA coding:
Dim obj as New WebDriver
obj.Start "edge"
obj.Get "http://..."
But Edge opens with the "Turn off remote debugging" notification bar under the website address. In order for my macro to manipulate Edge I need to it to be in Internet Explorer Mode, but the remote debugging being enabled is preventing this. The website address I am directing my code to is designated to open in the Internet Explorer Mode but when I use VBA to open it I get the 'remote debugging' message. What is the coding to turn the 'remote debugging' mode off so Edge opens in the Internet Explorer Mode as intended. Please help and thank you!