from selenium import webdriver
import requests
driver = webdriver.Chrome()
#login to website using selenium and get cookies
cookievar = driver.get_cookies()
#send requests using cookies scraped from selenium webdriver
r = post(url, formData, headers=headers0, proxies=proxies, verify=False)
my code works fine for one account but now i want this to be able to work with multiple accounts , this script only works for 1 account at a time what i am trying to get is run 3-4 accounts at the same time using webdriver and requests
can anyone help ? suggestions are welcome Thank you