Interact With Edge/HTML Through Vbscript
I'm new with VBS and I can't find how to interact (basic functions such as clic, write something) with a webpage after having load the URL in Edge. Here is how I open my webpage fo
Solution 1:
Microsoft Edge browser doesn't support the COM automation interface that used in VBS. If you want to automate Microsoft Edge, you should use WebDriver.
To get started using WebDriver, you will need to download a testing framework of your choice along with an appropriate language binding and the MicrosoftWebDriver server.
We usually use Selenium and you could download the language binding in this page. At the same time, you could download Microsof Edge WebDriver in this page.
Reference link:
Programmatically create Edge browser instance
Will Microsoft Edge support COM automation (InternetExplorer object)?
Post a Comment for "Interact With Edge/HTML Through Vbscript"