UITestInterpreterCore.ExecuteTest Method (Int64, Int64)

 

Executes (that is, interprets) the current UITest object for the actions in the specified range.

Namespace:   Microsoft.VisualStudio.TestTools.UITest.CodeGeneration
Assembly:  Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)

Syntax

public virtual UITestPlaybackResult ExecuteTest(
    long startId,
    long stopId
)
public:
virtual UITestPlaybackResult ExecuteTest(
    long long startId,
    long long stopId
)
abstract ExecuteTest : 
        startId:int64 *
        stopId:int64 -> UITestPlaybackResult
override ExecuteTest : 
        startId:int64 *
        stopId:int64 -> UITestPlaybackResult
Public Overridable Function ExecuteTest (
    startId As Long,
    stopId As Long
) As UITestPlaybackResult

Parameters

  • startId
    Type: System.Int64

    The ID of the first action in ExecuteAction list that indicates the start of the range.

  • stopId
    Type: System.Int64

    The ID of the last action in ExecuteAction list that indicates the end of the range.

Return Value

Type: Microsoft.VisualStudio.TestTools.UITest.CodeGeneration.UITestPlaybackResult

Returns UITestPlaybackResult.

Remarks

startId and stopId are used for only the ExecuteActions and not for other action lists.

See Also

ExecuteTest Overload
UITestInterpreterCore Class
Microsoft.VisualStudio.TestTools.UITest.CodeGeneration Namespace

Return to top