Disable sound from firefox? (selenium webdriver programming)

selenium, webdriver

Solution

You can set 'media.volume_scale' firefox attribute to "0.0"

`FirefoxProfile firefoxProfile = new FirefoxProfile(); firefoxProfile.setPreference("media.volume_scale", "0.0");`

Problem

I was wondering if there is a way to disable sound from firefox through profile setup in selenium?

Original source