Hide Edge browser with Selenium in VBA Excel - vba

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

Related

SeleniumBasic VBA open edge in IE mode

Trying to open a URL in an Edge Browser using SeleniumBasic (VBA). The problem is the secure website doesn't like two things. One SeleniumBasic-controlled website is in debug mode. Secondly, it requires the Edge Browser to be in IE mode.
I can open/work on other websites with no issues. Any help would be appreciated.
using this link solved the problem. I was able to load into an Edge browser and work with the Dom Document directly. Using IE Mode.
https://learn.microsoft.com/en-us/answers/questions/829365/vba-automation-with-edge-ie-mode.html

Getting a blank page when using Selenium web driver and Firefox

Firefox is opening a blank website when using Selenium web driver (geckodriver) for this handy tool here
Anyone an idea how to fix this?

Selenium ChromeDriver use already open browser

Help, please, dv question Selenium ChromeDriver.
Can I work in an already open Chrome browser? Or is it possible to open a new tab in an already open Chrome browser and work in it?
No, I do not believe this is possible.
They go to reasonable lengths to make Chrome display that it is being controlled by test software and presumably attaching to an existing browser window would create a vector for people to highjack the browser of unwitting users.

Unable to focus when using ChromeDriver

I am getting Webdriver exception "Failed to send keys because cannot focus on element" while using ChromeDriver.
I have also observed that if I bring up any other window (say eclipse) in front of the chrome browser and then minimize it, the ChromeDriver is able to resume execution on the Chrome browser but gets stuck again on the next input field.
Can anyone please help suggest some solution

Selenium WebDriver C# Attached with already open Chrome Browser

I am using WebDriver C# for Chrome Automation. I want to attach driver to already opened Chrome Instance.
I am struggling since long time; I hope here I got correct and proper answer.
As far as I know, attaching to an existing browser is not possible, and there are not plans to implement that functionality: https://github.com/seleniumhq/selenium-google-code-issue-archive/issues/18.