Forums

Chrome Extensions in Selenium

I want to work with google chrome extensions but the server seems to be ignoring it.

I tried pyvirtualdisplay but nothing happened. I tried everything, but it looks like there is no support for chrome extensions. Do I have to buy my way in to using chrome with extensions?

any help would be appreciated , like seriously.

Whether you pay or not will not affect whether extensions work in selenium. You just need to configure it to use them:

chrome_options = Options()
chrome_options.add_extension('path_to_extension')

driver = webdriver.Chrome(chrome_options=chrome_options)