Skip to content

Instantly share code, notes, and snippets.

@seleniumgists
Created June 2, 2020 12:22
Show Gist options
  • Select an option

  • Save seleniumgists/e3b0f3607c0bde10e4686a6ac534d107 to your computer and use it in GitHub Desktop.

Select an option

Save seleniumgists/e3b0f3607c0bde10e4686a6ac534d107 to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
static void Main(string[] args)
{
var profile = new FirefoxProfile();
var options = new FirefoxOptions();
profile.AddExtension("Touch_VPN.xpi");
options.Profile = profile;
var driver = new FirefoxDriver(options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment