How to handle camera pop ups on Chrome with C# MSTest?

How can I handle camera pop ups on Chrome while working with C# MSTest?

Hi Tom,

You can add the syntax below under your chrome option:

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