![]() |
The manual testing functionality is deprecated but still available in TestComplete. While we recommend using other approaches for new tests, you can continue to create and run manual tests if needed.. |
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();
}
{
// 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
' 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;
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"]();
}
{
// Obtains the manual test by its name
// And starts the execution
ManualTests["NewManualTest"]["Start"]();
}