Code:
Input Username
[Arguments] ${username}
Input Text login_username_id ${username}
Error:- Keyword 'Input Username' expected 1 arguments, got 0
May i know why am i getting this error?
Code:
Input Username
[Arguments] ${username}
Input Text login_username_id ${username}
Error:- Keyword 'Input Username' expected 1 arguments, got 0
May i know why am i getting this error?
Pass in self as the first argument in your method. Something like:
def input_username(self, arg1):
The error message is telling you exactly what the problem is: your keyword Input Username
expects exactly one argument, but the place where you are calling it is only providing one argument.