Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. def submit_new_account_form(self, **credentials):
  2. ....
  3.  
  4. create_new_account = loginpage.submit_new_account_form(
  5. {'first_name': 'Test', 'last_name': 'Test', 'phone_or_email': temp_email, 'newpass': '1q2w3e4r5t',
  6. 'sex': 'male'})
  7.  
  8. line 22, in test_new_account_succes
  9. 'sex': 'male'})
  10. TypeError: submit_new_account_form() takes 1 positional argument but 2 were given
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement