I need advice on how to call send_keys for user input. If I assign a variable for the line self.browser.find_elements_by_id ("Login1_UserName")
and then send it to send_keys, the solution does not work. What am I doing wrong?
def login(Self):
# login to the app
username = self.browser.find_elements_by_id ("Login1_UserName")
username.send_keys ("userone")