I want to run cross browsing testing instead of only one browser (Chrome) for configuring Chrome to run headless and deactivate images i use the following in wdio.conf.js
file :
browserName: 'chrome',
'goog:chromeOptions': {
args: chrome_args,
prefs: {
"profile.managed_default_content_settings.geolocation": 2,
"profile.managed_default_content_settings.images": 2
}
},
what's the equivalent of that for firefox and Edge ?