How does one disable images in Google chrome when using it through Selenium and c#?
I\'ve attempted 6 ways and none worked. I\'ve even tried the answer on this Stack
An easier approach would be solely:
ChromeOptions options = new ChromeOptions(); options.addArguments("headless","--blink-settings=imagesEnabled=false");