-
Notifications
You must be signed in to change notification settings - Fork 0
navigate_back
roei sabag edited this page Jul 12, 2020
·
1 revision
Move back 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 Back.
| Property | Description |
|---|---|
| argument | Plugin conditions and additional information. |
None
Can be tested on
Move back a single entry in the browser's history.
{
"action": "NavigateBack"
}navigate back
// option no.1
var actionRule = new ActionRule
{
Action = PluginsList.NavigateBack
};
// option no.2
var actionRule = new
{
Action = "NavigateBack"
};action_rule = {
"action": "NavigateBack"
}var actionRule = {
action: "NavigateBack"
};ActionRule actionRule = new ActionRule().setAction("NavigateBack");Can be tested on
Move back 2 entries in the browser's history.
{
"action": "NavigateBack",
"argument": "2"
}navigate back {2}
// option no.1
var actionRule = new ActionRule
{
Action = PluginsList.NavigateBack,
Argument = "2"
};
// option no.2
var actionRule = new
{
Action = "NavigateBack",
Argument = "2"
};action_rule = {
"action": "NavigateBack",
"argument": "2"
}var actionRule = {
action: "NavigateBack",
argument: "2"
};ActionRule actionRule = new ActionRule().setAction("NavigateBack").setArgument("2");