i have generated a .txt file containing all the cookies from my active session in Chrome using cookies.txt extension and i want to export them to use in a chromedriver session of Selenium to login a site that requires authentication.
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import TimeoutException
option = webdriver.ChromeOptions()
browser = webdriver.Chrome()
browser.get('https://www.amazon.co.uk/')
I hope you can guide me with your knownledge... thanks !!!