-
Notifications
You must be signed in to change notification settings - Fork 0
navigate_forward
roei sabag edited this page Jul 12, 2020
·
1 revision
Move forward a single entry in the browser's history. The action will be completed when page ready state equals complete or until page loading timeout reached.
Web, Mobile Web or any other Web Driver implementation which implements Forward.
| Property | Description |
|---|---|
| argument | Plugin conditions and additional information. |
None
Can be tested on
Move forward a single entry in the browser's history.
{
"action": "NavigateForward"
}navigate forward
// option no.1
var actionRule = new ActionRule
{
Action = PluginsList.NavigateForward
};
// option no.2
var actionRule = new
{
Action = "NavigateForward"
};action_rule = {
"action": "NavigateForward"
}var actionRule = {
action: "NavigateForward"
};ActionRule actionRule = new ActionRule().setAction("NavigateForward");Can be tested on
Move forward 2 entries in the browser's history.
{
"action": "NavigateForward",
"argument": "2"
}navigate forward {2}
// option no.1
var actionRule = new ActionRule
{
Action = PluginsList.NavigateForward,
Argument = "2"
};
// option no.2
var actionRule = new
{
Action = "NavigateForward",
Argument = "2"
};action_rule = {
"action": "NavigateForward",
"argument": "2"
}var actionRule = {
action: "NavigateForward",
argument: "2"
};ActionRule actionRule = new ActionRule().setAction("NavigateForward").setArgument("2");