如何将扩展程序及其设置添加到 chrome 驱动程序扩展程序?



我正在使用Python,Selenium和Chromedriver创建一个为我填写表格的程序。我想使用一定的镀铬扩展。我正在谈论的扩展名为"自动填充",它有一些闪电螺栓的图片。我在扩展程序上有一个"配置文件",可以立即在表单上填充一堆东西。我知道如何将扩展名添加到Chromedriver中,但是当我这样做时,它并不能保存所有信息的配置文件。我知道这个问题有工作能力,您可以在其中填写命令,但是它需要非常快,"自动填充"很快。

,如果您共享代码示例,我们将尽力而为。据我所理解;您可以使用类似的Chrome WebDriver选项。

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

executable_path = "path_chromedriver"
os.environ["webdriver.chrome.driver"] = executable_path
chrome_options = Options()
chrome_options.add_extension('path_of_extension')
driver = webdriver.Chrome(executable_path=executable_path, chrome_options=chrome_options)
driver.get("http://google.com")

有关更多信息,您应该检查https://sites.google.com/a/chromium.org/chromedriver/capabilities

相关内容

  • 没有找到相关文章

最新更新