Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Executes the given test for the specified range of actions.
Namespace: Microsoft.VisualStudio.TestTools.UITest.CodeGeneration
Assembly: Microsoft.VisualStudio.TestTools.UITest.CodeGeneration (in Microsoft.VisualStudio.TestTools.UITest.CodeGeneration.dll)
Syntax
public static void ExecuteTest(
UITest uiTest,
long startId,
long stopId
)
public:
static void ExecuteTest(
UITest^ uiTest,
long long startId,
long long stopId
)
static member ExecuteTest :
uiTest:UITest *
startId:int64 *
stopId:int64 -> unit
Public Shared Sub ExecuteTest (
uiTest As UITest,
startId As Long,
stopId As Long
)
Parameters
uiTest
Type: Microsoft.VisualStudio.TestTools.UITest.Common.UITestA UITest object.
startId
Type: System.Int64The identifier for the starting action. Provides a negative number to start at the beginning of the list.
stopId
Type: System.Int64The identifier for the ending action. Provides a negative number to execute to the last action in the list.
Remarks
startId and stopId are used for only the ExecuteActions and not for other action lists.
See Also
UITest
UITestPlaybackResult
ExecuteTest Overload
UITestInterpreter Class
Microsoft.VisualStudio.TestTools.UITest.CodeGeneration Namespace
Return to top