I am trying to do some web scraping using Selenium. This is being done on a Raspberry Pi where the default browser is Chromium. I need the WebDriver that will work with Chromium. Does ChromeDriver also work with Chromium because I have tried the ChromeDriver versions that are closest to my Chromium browser version (as the exact same one isn't listed) and it is not currently working but I don't know if this is to do with it being the wrong driver version or driver altogether?
I have currently tried to use the versions either side of my Chromium version for the ChromeDriver as there isn't one matching the exact Chromium version. The 2 versions I have tried are 78.0.3904.105 and 78.0.3904.70.
When I run my program it gives me an error of OSError: [Errno 8] Exec format error
and I have my line of code written as driver = webdriver.Chrome(PATH)
.
Thanks.