Selenium Webdriver加载空白页面而不是目标URL

时间:2019-05-13 12:26:09

标签: python selenium google-chrome crx

我想向我的工作程序中添加一些代码,以打开已启用扩展名的chrome浏览器,但是由于添加了该浏览器,因此浏览器首先启用了扩展名,而不是目标URL加载了只写了“数据”的空白页;在网址列上。 我很确定问题出在我添加到上一个程序的代码中,因为如果删除它,该程序可以正常运行,但没有扩展名。

from selenium import webdriver
import os
from selenium.webdriver.chrome.options import Options

executable_path = "path to the chromedriver"
os.environ["webdriver.chrome.driver"] = executable_path

buster = webdriver.ChromeOptions()    # buster is the extension I want to add
buster.add_extension('path to buster.crx')

driver=webdriver.Chrome(executable_path=executable_path, options=buster)
driver.maximize_window()
driver.get('https://stackoverflow.com/')

0 个答案:

没有答案