I’m wondering what forBrowser I’m supposed to use in Typescript if I’m using Chromium as a browser. forBrowser(‘chrome’) doesn’t work. I confirmed Selenium works with the setup I have (I made a test Python file that worked), but my app is in Typescript. Maybe forBrowser isn’t what I’m supposed to use and I have to reference the Chromium browser differently? Here’s the line I’m referring to:
let driver = new webdriver.Builder().forBrowser(webdriver.Browser.CHROME).build()