How to add multiple extensions to selenium chrome webdriver How to add multiple extensions to selenium chrome webdriver selenium selenium

How to add multiple extensions to selenium chrome webdriver


For each extension you want to add you have to call chrome_options.add_extension like this:

chrome_options.add_extension('Path/to/extension/one')chrome_options.add_extension('Path/to/extension/two')