- | P a g e
TOSCA TRICENTIS AS1 NEWEST 2025 ACTUAL
EXAM COMPLETE 100 QUESTIONS AND
CORRECT DETAILED ANSWERS (VERIFIED
ANSWERS) |ALREADY GRADED A+
How the ActionMode Verify is used? - ANSWER-"Verify" is used to check on the value to validate against expected results in the TestCase. For example, it might be important to verify that a particular shipping method you chose for a product you had ordered adds the correct amount to your total.
How the ActionMode WaitOn is used? - ANSWER-You select "WaitOn" when you want to perform a dynamic wait for a control property to reach a specified state. Alternatively, you use "WaitOn" to wait for an entered value before continuing the execution. Once the condition is satisfied, Tosca reacts and continues the automation workflow.
This is Best Practice over inserting a static wait, as this decreases the overall execution time.
- / 4
- | P a g e
How the ActionMode Buffer is used? - ANSWER-Tosca uses the ActionMode Buffer to save any type of value generated during the execution of the TestCase. It can either be a static or a dynamic value. This value will be temporarily saved in Tosca and can be used later on in the same TestCase.
How the ActionMode Constraint is used? - ANSWER-The ActionMode Constraint can used on a specific list item to identify the respective list item. A combination of selected values can be used to identify the list item.
How to run a Test Case? - ANSWER-Right-click on the Test Case and select Run in Scratchbook.
A section of the test case can be run by selecting objects and then press F6 to run the selected objects.
Add and arrange objects in the ScratchBook and then run them.
What is the ScratchBook? - ANSWER-The ScratchBook is a Tosca built-in capability that allows you to perform trial runs of your TestSteps and TestCases.
- / 4
- | P a g e
Such trial runs create only a temporary result. This temporary result is not saved and will be overwritten once you'll run a new TestCase or TestStep in the ScratchBook.
After execution, the results will appear in the ScratchBook. If a TestStep fails, a red X appears next to the step with log info, explaining what the error was. When everything runs correctly, the steps are marked with a green check mark.
What is the syntax of the Buffer? - ANSWER-{B[BufferName]}
How to see the Buffer values? - ANSWER-To see the Buffers directly in the WorkSpace view, navigate to the Tool section on the Ribbon. Here, you can find the "Buffer Viewer". In this window, you can see all the Buffers stored in Tosca. On the left is the Buffer Name, and on the right is the Buffer Value.
How could you use a randomly generated value again? - ANSWER-Buffering the value after its first creation.
How the Dynamic Expressions are used? - ANSWER-You'll use Dynamic Expressions if you need to specify values in your 3 / 4
- | P a g e
TestCases that are not generated until those particular TestCases are executed.
What is the syntax of the Test configuration parameter TCP? - ANSWER-{CP[Testconfigurationparameter]}
What is an XBuffer? - ANSWER-Used for reading out and buffering dynamic parts of a string for Dynamic Comparison.
When using the command {XB[Value]}, what is the meaning of the value inside the []? - ANSWER-The name of the Buffer.
What is the syntax for Integer Random Values? - ANSWER- Syntax 1 - {RND[Length of random number]}
Example: {RND[7]} - Create a 7-digit number
Syntax 2 - {RND[Lower limit][Upper limit]}
Example: {RND[-789][123]} - Creates an integer number
between -789 and 123
- / 4