对于 selenium 中的 ChromeOptions 类,我怎样才能找到我可以与 chromeoptions 类一起使用来执行浏览器特定设置的所有键,例如profile.default_content_settings.popups、download.default_directory 。
ChromeOptions option = new ChromeOptions();
Map<String,Object> prefs = new HashMap<String,Object>();
prefs.put("profile.default_content_settings.popups",0);
prefs.put("download.default_directory","C:\\User\\Desktop\\");