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