Automation Guide
Action-based testing language
TestArchitect Automation Classes
Automation classes
AbtAutomation ![](data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAAXklEQVRIiWNgGAWjAAoYoZhmhk9kYGCYQStLHBgYGP4xMDD8h1pEE0vSkSyhmU9GqCVMtHABJYCmQTR0DXdgoCCjMROh5iEDA4MgAwPDRQYGhlyoRVQHNC3sRsEQBwD2mR7t73r7NQAAAABJRU5ErkJggg==)
The requested page is not available for selected version.
Create
Syntax
void create()
Description
Creates a new class instance of AbtAutomation.
Parameters
There are no parameters for this function.
Return Value
There are no returned values for this function.
Notes
- This function is currently supported only by the Python and Java harnesses.
- You are required to call this method to instantiate an object of class AbtAutomation.
- When you no longer need the instance, use Destroy to avoid memory leak.
Example
For Python harness:
ABT = AbtAutomation() ABT.Create()
For Java harness:
AbtAutomation.create();