So I have endeavoured to learn selenium and I am struggling already at Step1: installation. In particular, connecting browser.
Here is the code:
from selenium import webdriver
import os
os.chmod('C:/SeleniumDrivers', mode = 0o755)
os.environ['PATH'] += r"C:/SeleniumDrivers"
driver = webdriver.Chrome(executable_path= r'C:/SeleniumDrivers')
Here is the error:
WebDriverException: Message: 'SeleniumDrivers' executable may have wrong permissions. Please see https://sites.google.com/a/chromium.org/chromedriver/home
Output is truncated.
I am out of ideas Selenium was supposed to open the Browser (from VSC)
You can see the two attemps in the code, using os.environ["PATH"]
(1), or trying os.chmod()
(as seen in another thread).
I suspected a local issue in administrator rights but using a folder placed somewhere led to same result.
I have also done the same process for Edge as browser. Again the result is the same.
So I cannot 100% pin down what the problem was, but this:
and this:
..Seemed to work. Also I changed chrome version but I can't tell if this was the issue.