Get addins loaded in UFT
Question ID: 106558
0
0

How can I programmatically get the loaded addins of a test, say if I want to use it in a VBScript file or something?

Marked as spam
Posted by (Questions: 89, Answers: 4)
Asked on December 30, 2015 8:04 pm
91 views
Answers (1)
0
Private answer

You can use a method called GetAssociatedAddinsForTest. You can then iterate through them if you want and display them or do whatever with the information. Here's a sample script that gets the loaded (associated) addins for a test and then displays them in a message box:

Set qtApp = CreateObject(''QuickTest.Application'')
arrTestAddins = qtApp.GetAssociatedAddinsForTest(''C:'') 'Create an array containing the list of addins associated with this test

For Each testAddin In arrTestAddins
msgbox qtApp.Addins(testAddin).name
msgbox qtApp.Addins(testAddin).Status
If qtApp.Addins(testAddin).Status <> ''Active'' Then
msgbox qtApp.Addins(testAddin).Status
Exit For
End If
Next

Marked as spam
Posted by (Questions: 2, Answers: 477)
Answered on December 30, 2015 8:09 pm
EyeOnTesting

Welcome back to "EyeOnTesting" brought to you by Orasi Software, Inc.

X
Scroll to Top