尝试使用配置文件设置在Python中使用Selenium禁用Flash。 This question指定了通过GUI执行此操作的方法,但对于此特定用例,以编程方式执行此操作会更好。具体来说,最好的解决方案是允许在新创建的配置文件对象中禁用Flash。
非常感谢!
答案 0 :(得分:6)
您可以使用以下配置文件禁用闪光灯。
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
def disableImages(self):
## Firefox profile object
firefoxProfile = FirefoxProfile()
## Disable Flash
firefoxProfile.set_preference('dom.ipc.plugins.enabled.libflashplayer.so',
'false')
## Set the modified profile while creating the browser object
self.browserHandle = webdriver.Firefox(firefoxProfile)