RobotFramework: Keyword 'Selenium2Library.Inpu

2019-08-03 04:00发布

问题:

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?

回答1:

Pass in self as the first argument in your method. Something like:

def input_username(self, arg1):


回答2:

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.