Package jp.vmi.selenium.runner.model
Interface ICommand
-
- All Known Implementing Classes:
SideCommand
public interface ICommandCommand interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCommand()Get command name.StringgetComment()Get comment.StringgetId()Get id.StringgetTarget()Get target.StringgetValue()Get value.StringgetWindowHandleName()Get window handle name for opening window.longgetWindowTimeout()Get window timeoue.booleanisBreakpoint()Check breakpoint at this command.booleanisOpensWindow()Check this command opens window.booleanisOpensWindowRead()???
-
-
-
Method Detail
-
getId
String getId()
Get id.- Returns:
- id.
-
getComment
String getComment()
Get comment.- Returns:
- comment.
-
getCommand
String getCommand()
Get command name.- Returns:
- command name.
-
getTarget
String getTarget()
Get target.- Returns:
- target.
-
getValue
String getValue()
Get value.- Returns:
- value.
-
isBreakpoint
boolean isBreakpoint()
Check breakpoint at this command.- Returns:
- true if breakpoint.
-
isOpensWindow
boolean isOpensWindow()
Check this command opens window.- Returns:
- true if open window.
-
getWindowHandleName
String getWindowHandleName()
Get window handle name for opening window.- Returns:
- window handle name.
-
getWindowTimeout
long getWindowTimeout()
Get window timeoue.- Returns:
- timeout (ms).
-
isOpensWindowRead
boolean isOpensWindowRead()
???- Returns:
- ???
-
-