无法运行Chrome selenium"未知错误:无法处理扩展#1和#34;

时间:2015-12-27 11:33:30

标签: python google-chrome selenium

我试图运行chrome selenium驱动程序并添加扩展名:

manifest_json = """..... """
background_js = """...."""
ext_file = 'my_extention.zip'
with zipfile.ZipFile(ext_file, 'w') as zp:
    zp.writestr("manifest.json", manifest_json)
    zp.writestr("background.js", background_js)

co = webdriver.ChromeOptions()
co.add_extension(ext_file)
d = webdriver.Chrome(chrome_options=co)

抛出错误:

raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: cannot process extension #1
from unknown error: invalid public key length
  (Driver info: chromedriver=2.9.248304,platform=Linux 3.19.0-39-generic x86_64)

1 个答案:

答案 0 :(得分:2)

当我尝试base64编码.crx以便在selenium上运行扩展时(我在量角器测试的上下文中),我偶然发现了这个问题。

我怀疑这是因为扩展程序没有使用与尝试运行它的浏览器相同的浏览器。

无论如何,我最终放弃了,只是我添加了一个选项来加载未加强扩展的chrome:

--load-extension=path_to_the_extension_folder

我希望它有所帮助。