Operation"
From Documentation
m (Created page with "{{ZATSEssentialsPageHeader}} ZATS Mimic provides complete operation agents. Testers can use them to mimic various scenarios of user action to an application. It is a fundamental...") |
m (correct highlight (via JWB)) |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{ZATSEssentialsPageHeader}} | {{ZATSEssentialsPageHeader}} | ||
− | ZATS Mimic | + | ZATS Mimic can simulate various user actions to a component such as input or click. It is a major part when writing a test case with ZATS Mimic. |
+ | Steps to use a <code> OperationAgent </code> on a <code> ComponentAgent </code>: | ||
+ | # Retrieve a target <code>ComponentAgent</code> with the selector syntax | ||
+ | # Depends on what operation you want to mimic, convert to the corresponding <code>OperationAgent</code>, e.g. <code>ComponentAgent.as(SelectAgent.class)</code> to select an Listitem. | ||
+ | #: Notice that not all ComponentAgents support all OperationAgent. e.g. you can't select a Button. | ||
+ | #: If conversion fails, you will get a run-time exception. | ||
+ | <!-- | ||
+ | Every operation agent section contains: | ||
+ | * purpose, which action to mimic | ||
+ | * work on which target components | ||
+ | * sample application UI picture (optional) | ||
+ | * sample code | ||
+ | --> | ||
+ | |||
+ | |||
+ | |||
+ | {{ZATSEssentialsPageHeader}} | ||
+ | {{ZATSEssentialsHeadingToc}} | ||
{{ZATSEssentialsPageFooter}} | {{ZATSEssentialsPageFooter}} |
Latest revision as of 02:55, 18 January 2022
ZATS Mimic can simulate various user actions to a component such as input or click. It is a major part when writing a test case with ZATS Mimic.
Steps to use a OperationAgent
on a ComponentAgent
:
- Retrieve a target
ComponentAgent
with the selector syntax - Depends on what operation you want to mimic, convert to the corresponding
OperationAgent
, e.g.ComponentAgent.as(SelectAgent.class)
to select an Listitem.- Notice that not all ComponentAgents support all OperationAgent. e.g. you can't select a Button.
- If conversion fails, you will get a run-time exception.