Reputation: 103
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?
Upvotes: 1
Views: 2950
Reputation: 112
Pass in self as the first argument in your method. Something like:
def input_username(self, arg1):
Upvotes: 2
Reputation: 385930
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.
Upvotes: 0