APITests Collection

Supported in versions 2021 and later.

Description

A collection of API tests.

Object Model

Public Properties

Public Property CountThe number of API tests in the collection.
Public Property ItemReturns the name or path of an API test located in the specified position.

Example

Retrieve the names and paths of API tests called in a test

' Create the application object
Dim qtApp
Set qtApp = CreateObject("QuickTest.Application") 
'Start OpenText Functional Testing
qtApp.Launch
qtApp.Visible = True
'Open a GUI test that contains API tests
test1 = "C:\Tests\GUITest2" 
qtApp.Open test1 
Set apitests = qtApp.Test.APITests
count = apitests.Count 
For i = 1 To count
	MsgBox apitests.Item(i).Name 'Get the name of the API test by index, starting from 1
	MsgBox apitests.Item(i).Path 'Get the path of the API test by index, starting from 1
Next

See Also

APITest Object