I am trying to enable cookies when I open a selenium driver. Currently when a driver is opened, the cookies settings is automatically set to disabled. How could I make it so that cookies are automatically available?
I know that there is a way to do it in JAVA with options.AddUserProfilePreference("profile.cookie_controls_mode", 0);
but I see nothing for Python.