'Cookies not loading in discord selenium python

I have such a situation, I log into the discord and then save the cookies with this code

pickle.dump (driver.get_cookies (), open (r "cookies_discord.pkl", "wb"))

after which I switch to a new browser and try to load cookies on the https://discord.com/ discord page on it and save cookies

but after the cookies are loaded, the page is still not logged in to me

with twitter all the same works fine

here is the code for loading cookies

for cookie_discord in pickle.load (open (r "cookies_discord.pkl", "rb")): driver.add_cookie (cookie_discord)



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source