How to handle microphone pop up on Chrome with C# NUnit?

By what method can I handle microphone pop up on Chrome while using NUnit?

Hi Brett,

You need to add the following syntax under your chrome options:

ChromeOptions options = new ChromeOptions();
options.addArguments("use-fake-ui-for-media-stream");