我想知道是否有办法通过 selenium 中的配置文件设置来禁用 firefox 的声音?
问问题
3147 次
3 回答
11
您可以将“media.volume_scale”firefox 属性设置为“0.0”
FirefoxProfile firefoxProfile = new FirefoxProfile();
firefoxProfile.setPreference("media.volume_scale", "0.0");
于 2013-12-04T12:13:00.137 回答
0
如果您对 Flash 或显示的任何其他视频/广告不感兴趣,您可以尝试使用 AdBlock 或 Flash Block 阻止该内容。
如果您有该插件,您可以专门只阻止让您烦恼的视频或该页面中的所有视频,但不能专门阻止所有页面。
于 2013-04-08T15:29:44.530 回答
0
截至2018.07。29,
如果您更新了 selenium 和 firefox 驱动程序(geckodriver)
你应该使用
profile = webdriver.FirefoxProfile()
profile.set_preference("media.volume_scale", "0.0")
于 2018-07-29T18:52:56.450 回答