I want to Start browsec VPN extension with selenium but I don't know how to access it
this is my code to add the extension:
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_extension('C:/Users/DELL-PC/Downloads/Browsec.crx')
browser = webdriver.Chrome(executable_path='C:/Users/DELL-PC/Downloads/chromedriver.exe', options=chrome_options)
browser.get('https://www.google.co.in')
This code is just for adding the extension in the browser, for me i want also start the vpn extension.