我正在使用c#处理selenium我想在运行时经常更改chrome下载pref。我怎样才能做到这一点?
目前,我一次使用以下代码。
chromeOptions.AddUserProfilePreference("download.default_directory", @"D:\");
chromeOptions.AddUserProfilePreference("intl.accept_languages", "nl");
chromeOptions.AddUserProfilePreference("disable-popup-blocking", "true");
chromeOptions.AddArguments("user-data-dir=C:/ChromeProfileConfig");
_driver = new ChromeDriver(chromeOptions);