Skip to main content
deleted 11 characters in body
Source Link

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) ... 

EXECUTABLE PATH HAS BEEN DEPRECATED!

if you get the exectuable_path ash 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_me(my_name): s=Service(ChromeDriverManager().install()) chrome_driver = webdriver.Chrome(service=s) ... 

EXECUTABLE PATH HAS BEEN DEPRECATED!

if you get the exectuable_path has 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 run(): s=Service(ChromeDriverManager().install()) chrome_driver = webdriver.Chrome(service=s) ... 
Source Link

EXECUTABLE PATH HAS BEEN DEPRECATED!

if you get the exectuable_path ash 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_me(my_name): s=Service(ChromeDriverManager().install()) chrome_driver = webdriver.Chrome(service=s) ...