Package org.kquiet.browser.action
package org.kquiet.browser.action
-
ClassDescriptionThe state of a browser action.
Click
is a subclass ofMultiPhaseAction
which clicks an element.CloseWindow
is a subclass ofSinglePhaseAction
which closes window(s).An interface which should be implemented by any action which delegates its execution toActionComposer
.Custom
is a subclass ofMultiPhaseAction
which performs custom action by phases to avoid blocking the execution of other browser actions.Extract
is a subclass ofMultiPhaseAction
which extract information from element by phases to avoid blocking the execution of other browser actions.GetUrl
is a subclass ofSinglePhaseAction
which loads a web page.IfThenElse
is a subclass ofSinglePhaseAction
which performs actions according to the evaluation result of specified function.JustWait
is a subclass ofMultiPhaseAction
which just waits by phases to avoid blocking the execution of other browser actions.MouseOver
is a subclass ofMultiPhaseAction
which moves the mouse to the middle of an element.MultiPhaseAction
models a browser action with multiple phases which is executed throughActionComposer
orActionRunner
.An interface which should be implemented by any browser action whose execution spans multiple phases.A marker annotation that indicates the annotated class is non-browserable.OpenWindow
is a subclass ofSinglePhaseAction
which openes a window.PostForm
is a subclass ofSinglePhaseAction
which creates a form and submits it through http post.ReplyAlert
is a subclass ofMultiPhaseAction
which interacts with the alert box.The way to deal with alert box.ScrollToView
is a subclass ofMultiPhaseAction
which scrolls an element into visible area of the browser window.Select
is a subclass ofMultiPhaseAction
which selects/deselects options on a SELECT element.The way to perform the selecting.SendKey
is a subclass ofMultiPhaseAction
which types into an element.SinglePhaseAction
is a subclass ofMultiPhaseAction
which has only one phase.Upload
is a subclass ofMultiPhaseAction
which types path of file into the file upload element.WaitUntil<V>WaitUntil
is a subclass ofMultiPhaseAction
which waits the evaluation result of condition function by phases to avoid blocking the execution of other browser actions.