我在Selenium Firefox个人资料中使用Ghosetry插件。 Firefox正在使用Ghostry插件开放,但我有两个问题。
每次我调用Selenium-Firefox时,它都会介绍页面https://extension.ghostery.com/intro#start
。我该如何禁用它?
默认情况下,Ghostery插件不会停止/阻止所有跟踪器。如何默认阻止所有跟踪器?
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插件。