3

I am trying to setup a automaited test. I am useing RobotFramework and the Selenium2Library.

When I run the test, I get Keyword 'Selenium2Library.Input Text' expected 2 arguments, got 1 for the line:

Input Text    id=quota 128

What am I doing wrong? I googled around and cannot find an answer. :(

The instructions I have are http://rtomac.github.io/robotframework-selenium2library/doc/Selenium2Library.html

1
  • Ok just found the answer: this: Input Text id=quota 128 needs to be this: Input Text id=quota 128 Need four spaces. Commented Oct 22, 2013 at 1:27

1 Answer 1

7

Arguments must be separated by at least two spaces, so

Input Text    quota    128

will do.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.