Tarayıcı Ayarları
Tarayıcı Ayarları
Tarayıcı Ayarları
var firefoxService = FirefoxDriverService.CreateDefaultService();
firefoxService.HideCommandPromptWindow = true;
var chromeService = ChromeDriverService.CreateDefaultService();
chromeService.HideCommandPromptWindow = true;var chromeOptions = new ChromeOptions();
chromeOptions.AddArguments(BrowserOptionNames.ChromeHeadless);
..
new ChromeDriver(chromeService, chromeOptions);
var firefoxOptions = new FirefoxOptions();
firefoxOptions.AddArguments(BrowserOptionNames.FirefoxHeadless);
..
new FirefoxDriver(firefoxService, firefoxOptions);var firefoxOptions = new FirefoxOptions();
firefoxOptions.SetPreference(“browser.download.dir”, Directory.GetCurrentDirectory() + “\\firefoxTemp”);
...
new FirefoxDriver(firefoxService, firefoxOptions);
var chromeOptions = new ChromeOptions();
chromeOptions.AddUserProfilePreference(“download.default_directory”, Directory.GetCurrentDirectory() + “\\chromeTemp”);
...
new ChromeDriver(chromeService, chromeOptions);Last updated