当前位置: 首页 > 知识库问答 >
问题:

无法运行Chrome selenium“未知错误:无法处理扩展#1”

颜高朗
2023-03-14
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个答案

公孙和怡
2023-03-14

当我试图对.crx进行base64编码以便在selenium上运行扩展时(这是在量角器测试的上下文中),我遇到了这个问题。

我怀疑这是由于扩展没有使用与试图运行它的浏览器相同的浏览器。

不管怎样,我最终还是放弃了,只是在chromium中添加了一个选项来加载未启用的扩展:

 类似资料: