Skip to content Skip to sidebar Skip to footer

Disable Python Chrome Driver Extensions Without Lose Driver Path

I started having issues running a python script which uses selenium and chrome driver, so I want to disable extensions of chrome driver using python without losing the path where t

Solution 1:

Just provide multiple keyword arguments:

chrome_options = Options()
chrome_options.add_argument("--disable-extensions")
browser = webdriver.Chrome(executable_path=path_to_Ie, chrome_options=chrome_options)

Post a Comment for "Disable Python Chrome Driver Extensions Without Lose Driver Path"