selenium-wrapper-vba
selenium-wrapper-vba copied to clipboard
A Selenium-WebDriver-based browser automation framework implemented for VBA.
the code below works well Sub testChromeHeadlessMode() Dim driver As New WebDriver Dim options As New WebDriverOptions options.BrowserType = Chrome options.ChromeArguments.Add "--headless" driver.Chrome "driver/path" driver.OpenBrowser options Debug.Print "finished" End Sub...
fixed issue #18. Please merge if there is no problem
In the webdriveroption.cls code I am getting a compile error after importing the file in the vba environment due to the code of Version 1.0 class is coming in vba...