Disabling Cookies in Webdriver for Chrome/Firefox
问题 I am trying to disable all cookies when starting up either the Chrome or Firefox browser. I have seen the examples on here but they're all in Java, and some of the Selenium code is different than it is for Python. ChromeOptions options = new ChromeOptions(); Map prefs = new HashMap(); prefs.put("profile.default_content_settings.cookies", 2); options.setExperimentalOptions("prefs", prefs); driver = new ChromeDriver(options); I want to do the above, just in Python. 回答1: It would be: from