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

In what way can I handle microphone pop up on Chrome while using MSTest?

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");