Permission
Why we require below permissions
diff --git a/docs/4.x/about/permissions/index.html b/docs/4.x/about/permissions/index.html index e5420ba0..0294e6df 100644 --- a/docs/4.x/about/permissions/index.html +++ b/docs/4.x/about/permissions/index.html @@ -16,7 +16,7 @@ Dark
Why we require below permissions
Why we require below permissions
Subscribe to PRO features of extension
Subscribe to PRO features of extension
Action condition are used to check status (SKIPPED
or DONE
) of previous executed actions and Skip
or Process
current Action
Action Condition consist of two part IF and THEN
From name itself its clear that its the place where you configure your condition. you can add more than one condition with operator like OR
and AND
to it. It consist of three column. OPR (operator condition), Previous Action (whose status need to check), Status of previous action which need to be checked. And there is one more column which is to add or remove condition.
Action column is used to select the action for which status need to be checked.
Status column is simple which need to be check for that particular action. There are two status only for action which are SKIPPED
or DONE
. If by any condition on action if its skipped to next action its status is set as SKIPPED
and if that action is completed successfully its status is set as DONE
.
If you have more than one condition you need to select OPR. OPR are either OR
/ AND
. By default AND
is selected. These operator result as below.
Action 1 status result | OPR | Action 2 status result | result |
---|---|---|---|
true | OR | true | true |
true | OR | false | true |
false | OR | true | true |
false | OR | false | false |
true | AND | true | true |
true | AND | false | false |
false | AND | true | false |
false | AND | false | false |
This component is dependent on IF statement based on the final result of IF statement. Then has only two option to be selected SKIP
/ PROCEED
. Below table show how it works.
IF | THEN | result |
---|---|---|
true | SKIP | SKIP |
false | SKIP | PROCEED |
true | PROCEED | PROCEED |
false | PROCEED | SKIP |
Select what should happen if element is not found after no of retry.
Name | Default | Description |
---|---|---|
Stop | selected | Do nothing. Stop extension without proceeding further. |
Skip | not selected | Skip current action and continue next action. |
Refresh Page | not selected | Refresh whole page. |
If an action need to be performed on button / input field which is inside iframe you can check this checkbox which check within iframe first and then in main page. which saves lot of time.
default is unchecked its applicable to iframe which do not have url in src attribute. example
If there is url in the src attribute consider creating new configuration with targeted url.
Retry Interval will wait for no of sec provided before retry to find XPath of Action. default is 1 sec
Retry finding element in webpage for number of times provided. default is 5
1
to 999
Append the text on existing field.
Append the text on existing field.
Update the attribute of the element using below commands.
Update the attribute of the element using below commands.
Now combine the power of batch into actions using <BatchRepeat>
Now combine the power of batch into actions using <BatchRepeat>
e.g. In value field if you enter example<batchRepeat>
example0
example1
e.g. If batch repeat is 5
it will run till example4