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:
For those using Python, this worked for me:
from selenium import webdriver from selenium.webdriver.chrome.options import Options chrome_options = Options() chrome_options.add_argument("--use-fake-ui-for-media-stream") driver = webdriver.Chrome(chrome_options=chrome_options)