我想更改 chrome 的默认下载目录。我确实经历了以下网址
http://peter.sh/experiments/chromium-command-line-switches/
和
http://code.google.com/p/chromedriver/wiki/CapabilitiesAndSwitches中列出的不同论点
我想知道如何在运行时更改 chrome web driver C# 中的下载文件夹,提前谢谢
我想更改 chrome 的默认下载目录。我确实经历了以下网址
http://peter.sh/experiments/chromium-command-line-switches/
和
http://code.google.com/p/chromedriver/wiki/CapabilitiesAndSwitches中列出的不同论点
我想知道如何在运行时更改 chrome web driver C# 中的下载文件夹,提前谢谢
尝试这个。
namespace UnitTestProject1_webdriver
{
public class ChromeOptionsWithPrefs : ChromeOptions
{
public Dictionary<string, object> prefs { get; set; }
}
[TestClass]
public class demo
{
[TestMethod]
public void demo1()
{var options = new ChromeOptionsWithPrefs();
options.prefs = new Dictionary<string, object>
{
{ "download.default_directory", @"c:\download temp\" }
};
RemoteWebDriver driver = new ChromeDriver(@"d:\selenium dlls\", options);
}
}
}