specflow chromedriver does not exist code example
Example: chromedriver = webdriver.Chrome(“D:\driver\chromedriver.exe”) doesnt work
"chromedriver = webdriver.Chrome(“D:\driver\chromedriver.exe”)" doesnt work for me
so i found out if i use "driver = webdriver.Chrome(executable_path=r'DRIVER_PATH')"
it works
from selenium import webdriver
driver = webdriver.Chrome(executable_path=r'D:\driver\chromedriver.exe')