How to allow or deny notification of microphone and camera popup in Firefox using Selenium WebDriver with Java
问题 I am not able to click on the Allow button of access camera authentication popup in Firefox browser using Selenium WebDriver with Java. Below is the code which is using: Map<String, Object> prefs = new HashMap<String, Object>(); WebDriverManager.firefoxdriver().setup(); prefs.put("profile.default_content_setting_values.media_stream_mic", 1); prefs.put("profile.default_content_setting_values.media_stream_camera", 1); prefs.put("profile.default_content_setting_values.notifications", 1); prefs