IUITestActionStack 介面
這個介面可讓您以彙總工具外掛程式存取 UI 測試錄製器的動作清單。
命名空間: Microsoft.VisualStudio.TestTools.UITest.Common
組件: Microsoft.VisualStudio.TestTools.UITest.Common (在 Microsoft.VisualStudio.TestTools.UITest.Common.dll 中)
語法
'宣告
Public Interface IUITestActionStack
public interface IUITestActionStack
public interface class IUITestActionStack
type IUITestActionStack = interface end
public interface IUITestActionStack
IUITestActionStack 型別會公開下列成員。
屬性
名稱 | 說明 | |
---|---|---|
Count | 取得這個堆疊中的動作數目。 | |
SyncRoot | 取得用來鎖定及同步處理堆疊作業的物件。 |
回頁首
方法
名稱 | 說明 | |
---|---|---|
Peek() | 傳回堆疊中最上層的項目,而不加以移除。 | |
Peek(Int32) | 傳回堆疊中位於提供的索引上的項目,而不加以移除。 | |
Pop() | 移除並傳回堆疊中最上層的項目。 | |
Pop(Int32) | 移除堆疊中位於指定索引上的項目,然後傳回。 | |
Push | 在堆疊的最上方插入提供的測試動作。 |
回頁首