EXECUTABLE PATH HAS BEEN DEPRECATED!
if you get the exectuable_path ashhas been deprecated warning, here is the fix...
from selenium import webdriver from selenium.webdriver.chrome.service import Service from webdriver_manager.chrome import ChromeDriverManager def test_merun(my_name): s=Service(ChromeDriverManager().install()) chrome_driver = webdriver.Chrome(service=s) ...