在哪里可以找到 Edge 的所有experimental_option“prefs”键的列表,如“download.default_directory”和“download.prompt_for_download”?

问题描述 投票:0回答:1

我正在使用 Python 和 Selenium 来自动化 Edge。

在哪里可以找到 Edge 的所有experimental_option“prefs”键的列表,如“download.default_directory”和“download.prompt_for_download”?

换句话说,您可以在页面功能和EdgeOptions上阅读“首选项”字典的键。

我已尽力在网络上进行搜索。

selenium-webdriver selenium-chromedriver webdriver microsoft-edge
1个回答
0
投票

您需要在 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";
© www.soinside.com 2019 - 2024. All rights reserved.