How to disable all browser pop ups on Chrome using SpecFlow?

How to disable all browser pop ups on Chrome using SpecFlow?

Hi Mark!

To disable all browser pop ups on Chrome using SpecFlow, you can add the below command in your test script as given below.

ChromeOptions options = new ChromeOptions();
options.AddExcludedArgument("disable-popup-blocking");