我正在使用以下代码为chromedriver设置代理:
from selenium.webdriver.chrome.options import Options as options
ops = options()
ops.add_argument('--proxy-server=PROXY:PORT')
browser1 = selenium.webdriver.Chrome(service_log_path='NUL', executable_path=info['location'] + '//Variables//Common//Browsers//chromedriver.exe', options=ops, desired_capabilities={'binary_location': 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe'})
是否可以在不重新打开浏览器的情况下更改代理?