Answer the question
In order to leave comments, you need to log in
How to set a custom FirefoxDriver profile?
FirefoxOptions options = new FirefoxOptions();
options.Profile = new FirefoxProfile(path);
FirefoxDriver driver = new FirefoxDriver(options);
FirefoxDriver driver = new FirefoxDriver(new FirefoxProfile(path));
GoToUrl
normal.FirefoxProfile profile = new FirefoxProfile(path);
FirefoxOptions options = new FirefoxOptions();
options.Profile = profile;
FirefoxDriver driver = new FirefoxDriver(options);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question