Created
June 2, 2020 12:22
-
-
Save seleniumgists/e3b0f3607c0bde10e4686a6ac534d107 to your computer and use it in GitHub Desktop.
generated automatically from #selenium on seleniumhq slack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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