this my code:
import requests
from bs4 import BeautifulSoup
Url = "https://gmail.com"
R = requests.get(Url)
Soup = BeautifulSoup(R.text,"lxml")
print(Soup)
But i need my cookies, login datas and other things and they are stored in google chrome so i want getting url via google chrome.
Path of Google Chrome: "C:\Program Files\Google\Chrome\Application\chrome.exe"
is that possible? Thanks...