I am making a Python 3-script with Selenium 4 and Gecko web driver.
I am using cookies = driver.get_cookies()
to capture cookies after logging in to a site.
The question is how I can cookies from Selenium in a GET request using the Requests module. In other words, how can we capture cookies with Selenium and use those cookies in Requests?
I tried the suggested answer in this question, but it is not correct and the question is over a year old without any other answers...