fixed issue with non-typeable key

blueprint_refactoring
Simon Pirkelmann 2022-02-02 21:40:17 +01:00
parent 47f378fe6e
commit 2f40732d0b
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ def test_login(browser, live_server):
response = browser.get(f'http://localhost:{live_server.port}/login')
email_form = browser.find_element('id', 'email').send_keys('gandalf@shire.me')
email_form = browser.find_element('id', 'email').send_keys('gandalf')
password_form = browser.find_element('id', 'password').send_keys('shadowfax')
submit_button = browser.find_element('id', 'submit').click()