I have a question to ask because I am in trouble. I would like to be able to hide the Browser Edge while running a VBA Routine using Selenium type library.
Using the Chrome browser I can get the result by writing AddArgument "--headless" but with the Edge browser I don't know how to do it. Can someone help me?
Thanks a lot! :-)
Dim web As New ChromeDriver
With web
.AddArgument "--headless" ''Works with Chrome but doesn't work with Edge
'OTHER
End With