如何在 Python 中使用 Selenium 在 Firefox 中禁用 Flash?
Posted
技术标签:
【中文标题】如何在 Python 中使用 Selenium 在 Firefox 中禁用 Flash?【英文标题】:How to disable Flash in Firefox with Selenium in Python? 【发布时间】:2013-04-30 16:17:55 【问题描述】:尝试使用配置文件设置在 Python 中使用 Selenium 在 Firefox 中禁用 Flash。 This question 指定了一种通过 GUI 执行此操作的方法,但对于此特定用例,以编程方式执行此操作会更好。具体来说,最好的解决方案是允许在新创建的配置文件对象中禁用 Flash。
非常感谢!
【问题讨论】:
【参考方案1】:您可以使用以下配置文件禁用闪光灯。
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)
【讨论】:
优秀。非常感谢! 您能否指定更多细节,例如 FF 和 selenium 版本?以上是关于如何在 Python 中使用 Selenium 在 Firefox 中禁用 Flash?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Python 中使用 Selenium 在 Firefox 中禁用 Flash?
如何在 python 中使用 selenium 下载 pdf 文件
如何使用Selenium和Python在网站内的页面中导航?
如何使用 Selenium 和 Python 在控制台中跳过调试日志