I used Selenium to successfully log in to a portal. However, when attempting to extract cookies, I received an empty list. Interestingly, I noticed the cookies are visible in the network tab but are hidden under "Show filtered cookies." Inside network request we can see this cookie section
I attempted to extract cookies from various endpoints, but every attempt resulted in an empty list. I also tried retrieving cookies using the script execution method:
cookies = driver.execute_script("return document.cookie")
Can anyone help debugging get those cookies?