我正在尝试发送一些POST / GET请求,然后将会话/ cookie转移到使用Selenium的Chrome网络驱动程序。由于我是Selenium的新手,我不确定如何实现这一目标。我已经看到人们如何对请求进行Selenium会话,但这不是我需要的。任何帮助都会受到赞赏,因为我到处寻找并且无法找到解决方案。
import requests
from selenium import webdriver
driver = webdriver.Chrome()
s = requests.Session()
s.post('http://example.com')
s.get('http://example.com')
# need to trasnfer session/cookies to driver
driver.get('http://example.com')