def setUserName(self, username):
self.driver.find_element(By.ID, self.textbox_Username_ID).send_keys(username)
E AttributeError: 'NoneType' object has no attribute 'find_element'
AttributeError
def setUserName(self, username):
self.driver.find_element(By.ID, self.textbox_Username_ID).send_keys(username)
E AttributeError: 'NoneType' object has no attribute 'find_element'
AttributeError
You did not initialize driver object properly, currently it is not existing, 'NoneType' in Python