我正在使用 Python 和 Selenium 来自动化 Edge。
在哪里可以找到 Edge 的所有experimental_option“prefs”键的列表,如“download.default_directory”和“download.prompt_for_download”?
换句话说,您可以在页面功能和EdgeOptions上阅读“首选项”字典的键。
我已尽力在网络上进行搜索。
您需要在 chromium 源代码中找到它们:https://chromium.googlesource.com/chromium/src/+/4aaa9f29d8fe5eac55b8632fa8fcb05a68d9005b/chrome/common/pref_names.cc.
例如,您可以在文件中找到
download.default_directory
和download.prompt_for_download
:
// String which specifies where to download files to by default.
const char kDownloadDefaultDirectory[] = "download.default_directory";
// Boolean which specifies whether we should ask the user if we should download
// a file (true) or just download it automatically.
const char kPromptForDownload[] = "download.prompt_for_download";