I am currently trying to run some tests made with webdriverjs and chromedriver but they need microphone permissions.
This is the popup that shows up:
Similarly, for use in Splinter
Splinter
from splinter import Browser from selenium.webdriver.chrome.options import Options chrome_options = Options() chrome_options.add_argument("--use-fake-ui-for-media-stream") Browser('chrome', ** {'executable_path':'chromedriver'},options=chrome_options)