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

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

The IUITestActionStack type exposes the following members.

Properties

  Name Description
Public property Count Gets the number of actions in this stack.
Public property SyncRoot Gets the object that is used to lock and synchronize operations on the stack.

Top

Methods

  Name Description
Public method Peek() Returns the topmost element from the stack without removing it.
Public method Peek(Int32) Returns the element at the provided index from the stack without removing it.
Public method Pop() Removes and returns the topmost element from the stack.
Public method Pop(Int32) Removes and returns the element at the specified index in the stack.
Public method Push Inserts the provided test action at the top of the stack.

Top

See Also

Reference

Microsoft.VisualStudio.TestTools.UITest.Common Namespace