I am using the requests library in Robot framework provided at this github link. The documentation implies that if can send custom headers by doing CreateSession <
CreateSession <
According to the Requests documentation, you may add headers to the Session object as:
s = requests.Session() s.auth = ('user', 'pass') s.headers.update({'x-test': 'true'})