1

I'm trying to log into Tealeaf using python. The application needs to be opened using chrome incognito and I'm not sure if my code is wrong or if I'm missing some information in cookies. I'm not sure how to identify what the Username and Password are called because a small dialogue box opens at the top of Chrome Incognito.

import requests

url = 'tealeaf.com/sessionsearch.aspx'
ck = {'Username': 'myusername', 'Password': 'mypassword'}
session = requests.session()

r = session.post(url, cookies=ck)

0 Answers0