Package org.kquiet.browser.action
Interface MultiPhased
- All Superinterfaces:
Composable
- All Known Implementing Classes:
Click,CloseWindow,Custom,Extract,GetUrl,IfThenElse,JustWait,MouseOver,MultiPhaseAction,OpenWindow,PostForm,ReplyAlert,ScrollToView,Select,SendKey,SinglePhaseAction,Upload,WaitUntil
An interface which should be implemented by any browser action whose execution spans multiple
phases.
- Author:
- Kimberly
-
Method Summary
Modifier and TypeMethodDescriptionbooleanCheck if has next phase to execute.voidSignals that no more phases to execute.Methods inherited from interface org.kquiet.browser.action.Composable
getComposer, getErrors, isDone, isFail, perform, setComposer
-
Method Details
-
noNextPhase
void noNextPhase()Signals that no more phases to execute. -
hasNextPhase
boolean hasNextPhase()Check if has next phase to execute.- Returns:
trueif has next phase to execute;falseotherwise
-