在Selenium Firefox配置文件中禁用Ghostery附加组件简介页面 - Python

时间:2016-03-11 18:39:14

标签: python-2.7 selenium-webdriver

我在Selenium Firefox个人资料中使用Ghosetry插件。 Firefox正在使用Ghostry插件开放,但我有两个问题。

  1. 每次我调用Selenium-Firefox时,它都会介绍页面https://extension.ghostery.com/intro#start。我该如何禁用它?

  2. 默认情况下,Ghostery插件不会停止/阻止所有跟踪器。如何默认阻止所有跟踪器?

  3. from selenium import webdriver
    from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
    from randomAttibute_firefox import RandomAttributes
    firefoxProfile = FirefoxProfile()
    ghostery_addon="/Users/Desktop/ghostery.xpi"
    firefoxProfile.add_extension(ghostery_addon)
    firefoxProfile.update_preferences()
    driver = webdriver.Firefox(firefoxProfile)
    driver.get("https://ipleak.net/")
    

    每次调用浏览器时,我都不想进入Ghostery的介绍页面。另外,我需要默认阻止/禁用所有跟踪器。我在谷歌搜索但找不到任何设置来自定义Ghostery插件。

0 个答案:

没有答案