就像我有一个代理列表一样,我怎么能把它合并在一起来打开它的选项卡
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
driver = webdriver.Chrome()
driver.get('https://www.youtube.com/watch?v=QggJzZdIYPI&ab_channel=CandRfun')
#以此链接为例
只需将代理的ip和端口替换为第二行所需的ip和所需的端口。
from selenium import webdriver
PROXY = "The desired IP:Desired port"
chrome_options = WebDriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % PROXY)
chrome = webdriver.Chrome(chrome_options=chrome_options)
chrome.get("https://www.youtube.com/watch?v=QggJzZdIYPI&ab_channel=CandRfun")