Start Method

Applies to TestComplete 15.63, last modified on April 10, 2024
The manual testing functionality is deprecated. Do not use it for creating new tests. It will be removed in a future TestComplete release.

Description

The Start method starts the manual test existing in the project.

Declaration

ManualTestingObj.Start()

ManualTestingObj An expression, variable or parameter that specifies a reference to a ManualTesting object
Result None

Applies To

The method is applied to the following object:

Result Value

None.

Example

The following code snippet starts the NewManualTest test.

JavaScript, JScript

function Main()
{
  // Obtains the manual test by its name
  // And starts the execution
  ManualTests.NewManualTest.Start();

}

Python

def Main():
  # Obtains the manual test by its name
  # And starts the execution
  ManualTests.NewManualTest.Start()

VBScript

Sub Main

  ' Obtains the manual test by its name
  ' And starts the execution
  ManualTests.NewManualTest.Start

End Sub

DelphiScript

procedure Main();
begin
  // Obtains the manual test by its name
  // And starts the execution
  ManualTests.NewManualTest.Start;

end;

C++Script, C#Script

function Main()
{
  // Obtains the manual test by its name
  // And starts the execution
  ManualTests["NewManualTest"]["Start"]();

}

See Also

Manual Testing
Executing Manual Tests
Manual Testing Events

Highlight search results