IUITestActionStack Interface

 

This interface provides access for aggregator plug-ins to the action list of the UI test recorder.

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

Syntax

public interface IUITestActionStack
public interface class IUITestActionStack
type IUITestActionStack = interface end
Public Interface IUITestActionStack

Properties

Name Description
System_CAPS_pubproperty Count

Gets the number of actions in this stack.

System_CAPS_pubproperty SyncRoot

Gets the object that is used to lock and synchronize operations on the stack.

Methods

Name Description
System_CAPS_pubmethod Peek()

Returns the topmost element from the stack without removing it.

System_CAPS_pubmethod Peek(Int32)

Returns the element at the provided index from the stack without removing it.

System_CAPS_pubmethod Pop()

Removes and returns the topmost element from the stack.

System_CAPS_pubmethod Pop(Int32)

Removes and returns the element at the specified index in the stack.

System_CAPS_pubmethod Push(UITestAction)

Inserts the provided test action at the top of the stack.

See Also

Microsoft.VisualStudio.TestTools.UITest.Common Namespace

Return to top