Skip to content

Instantly share code, notes, and snippets.

@Swimburger
Last active July 25, 2019 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swimburger/ffa02a2f3080e30204336632244f95aa to your computer and use it in GitHub Desktop.
Save Swimburger/ffa02a2f3080e30204336632244f95aa to your computer and use it in GitHub Desktop.
C# instantiate ChromeDriver in headless mode
var options = new ChromeOptions();
options.AddArgument("headless");
using(var driver = new ChromeDriver(".", options)){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment