I'm trying to use selenium to run tests using brave browser (I've already got it running for chrome, IE and firefox)
I found this post How to run Selenium tests on the Brave web browser?
which suggests using:
from selenium import webdriver
option = webdriver.ChromeOptions()
option.binary_location = r'C:\Program Files (x86)\BraveSoftware\Brave-Browser\Application\brave.exe'
driver = webdriver.Chrome(executable_path=r'C:\WebDrivers\chromedriver.exe', options=option)
driver.get("https://www.google.com")
However that's for python I believe and I can't work out how to do the equivalent in VBA