org.robotframework.javalib.keyword
Interface Keyword

All Known Subinterfaces:
DocumentedKeyword
All Known Implementing Classes:
ArgumentCheckingKeyword, CollisionKeyword, PreparableKeyword, ZeroArgumentKeyword

public interface Keyword

A keyword that performs a single, isolated task for a test case.

Author:
Sami Honkonen
See Also:
ArgumentCheckingKeyword

Method Summary
 java.lang.Object execute(java.lang.Object[] arguments)
          Execute method is called when the keyword is executed in a Robot test case.
 

Method Detail

execute

java.lang.Object execute(java.lang.Object[] arguments)
Execute method is called when the keyword is executed in a Robot test case.

Parameters:
arguments - arguments from Robot
Returns:
keyword return value. If the keyword isn't suppose to return anything useful, use Boolean.TRUE.


Copyright © 2008. All Rights Reserved.