Mark an existing test method in a script as a keyword to reuse the method in keyword-driven tests.
Examples
To mark the test method
login as a new keyword with the name
Login, type the following before the start of the test method:
@Keyword("Login")
To mark the test method
login as a new keyword with the name
Login and with the two input parameters
UserName and
PassWord, type the following:
@Keyword(value="Login", description="Logs in with the given name and password.")
public void login(@Argument("UserName") String userName, @Argument("PassWord") String password) {
... // method implementation
}
Note: If you are viewing this help topic in PDF format, this code sample might include line-breaks which are not allowed in scripts. To use this code sample in a script, remove these line-breaks.