data = session.get('https://login.yahoo.com/account/create?intl=ru', proxies=proxies, headers=headers)
page = lxml.html.fromstring(data.content)
form = page.forms[0]
form.fields['firstName'] = 'John'
form.fields['lastName'] = 'Vickers'
...