SetActiveAddins Method
Description
Specify the Add-ins to load in OpenText Functional Testing.
Versions 15.0.2 and later: This method can be called either before or after the Application.Launch method.
Versions 15.0.1 and earlier: You can use this method only before the Application.Launch statement.
Syntax
Visual Basic |
---|
Public Function SetActiveAddins( _ ByRef AddinNames As Variant, _ Optional ByRef ErrorDescription As Variant _ ) As Boolean |
Parameters
AddinNames | An array containing strings specifying the add-in names to load. The available Add-in names are displayed in the Add-in Manager dialog box. Alternatively, you can use the Addin.Name property to retrieve the relevant add-in name. |
ErrorDescription | If the set of add-ins you specify contains two or more conflicting add-ins, or if you specify an add-in that is dependent on another add-in that was not included in the specified add-ins list, the ErrorDescription argument stores the error string describing these errors. |
Return Type
- True--The add-ins were loaded successfully.
- False--OpenText Functional Testing was unable to load the specified set of add-ins.
Remarks
- In addition to using this method to load add-ins provided with OpenText Functional Testing, you can also use it to load add-ins that you or a third party developed using add-in extensibility to provide OpenText Functional Testing support for additional environments or controls.
- If an add-in is displayed in the Add-in Manager dialog box as a child of another add-in, and you instruct OpenText Functional Testing to load the child add-in, OpenText Functional Testing also loads the parent add-in.
- The Add-ins specified in this method are loaded instead of any add-ins loaded previously.
- Add-ins loaded using this method are not unloaded dynamically when the test ends.
Example
Open Method | Specify the Add-ins to Load for a Test
See Also