You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
visibility (str, default='PRIVATE' values=['PUBLIC', 'PRIVATE']): The visibility, PUBLIC=All Public Tests, PRIVATE=My private tests.
99
145
owner_list (list[str], values= use first list_filter_values tool with 'owner_list'): The list of users to filter tests (owners).
100
146
page_index (int, default=1), The current page number. If the result mention has_next_page in true, asks the user if they want to see the next page.
101
-
- list_filter_values: List the values needed for list_report_executions filters
147
+
- list_filter_values: List the values needed for list_tests filters.
102
148
args(dict): Dictionary with the following required filter parameters:
103
149
filter_names (list[str], values=['test_name', 'owner_list']): The filter name list.
104
-
- execute_test: Execute a preconfigured AI Scriptless Test, you need to know the test_id of a created and configured test and the real device_id available an not in use to run the test.
150
+
- execute_test: Execute a preconfigured AI Scriptless Test.
105
151
args(dict): Dictionary with the following required parameters:
106
-
test_id (str): The test Id that should be started.
152
+
test_id (str): Test ID from list_tests()
107
153
device_type (str, default='real', values=['real', 'virtual', 'desktop']: The device type.
108
-
device_under_test (dict): The Device Under Test (DUT).
3. On real device use read_real_device_info() (verify device is available and not in use).
170
+
4. execute_test() (execute the test).
171
+
5. list_report_executions() with report name equal to test name and list_live_executions() when the device it's in use (monitor execution progress).
172
+
- Always check before running a test_id if the device_type and device_under_test exist and is available (when it's a real device), not use device in use or malfunctioning.
173
+
- Always monitor a real device's operation while it's in use by checking the information with read_real_device_info().
132
174
- Always stop the execution by stopping the live execution (make sure it's the correct execution, such as the execution name or user ID).
0 commit comments