UITestActionInvoker Class
Provides constructors and methods to start a specific UI test action.
Inheritance Hierarchy
Object
Microsoft.VisualStudio.TestTools.UITest.Common.UITestActionInvoker
Microsoft.VisualStudio.TestTools.UITest.CodeGeneration.UIActionInterpreter
Namespace: Microsoft.VisualStudio.TestTools.UITest.Common
Assembly: Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)
Syntax
'Declaration
Public MustInherit Class UITestActionInvoker _
Implements IDisposable
public abstract class UITestActionInvoker : IDisposable
public ref class UITestActionInvoker abstract : IDisposable
[<AbstractClass>]
type UITestActionInvoker =
class
interface IDisposable
end
public abstract class UITestActionInvoker implements IDisposable
The UITestActionInvoker type exposes the following members.
Constructors
Name | Description | |
---|---|---|
UITestActionInvoker | Initializes a new instance of the UITestActionInvoker class. |
Top
Properties
Name | Description | |
---|---|---|
InRetryMode | Gets or sets a value that indicates whether the invoker is in retry mode. |
Top
Methods
Name | Description | |
---|---|---|
Cancel | Cancels the current invocation task. | |
Dispose | Releases resources. | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Invoke(AssertAction, UIMap) | Invokes the provided AssertAction by using the provided UIMap. | |
Invoke(BrowserAction, UIMap) | Invokes the provided BrowserAction by using the provided UIMap. | |
Invoke(DelayAction, UIMap) | Invokes the provided DelayAction by using the provided UIMap. | |
Invoke(DragAction, UIMap) | Invokes the provided DragAction by using the provided UIMap. | |
Invoke(DragDropAction, UIMap) | Invokes the provided DragDropAction by using the provided UIMap. | |
Invoke(ErrorAction, UIMap) | Invokes the provided ErrorAction by using the provided UIMap. | |
Invoke(InvokeAction, UIMap) | Invoke for InvokeAction. | |
Invoke(KeyboardAction, UIMap) | Invokes the provided KeyboardAction by using the provided UIMap. | |
Invoke(LaunchApplicationAction, UIMap) | Invokes the provided LaunchApplicationAction by using the provided UIMap. | |
Invoke(MarkerAction, UIMap) | Invokes the provided MarkerAction by using the provided UIMap. | |
Invoke(MediaAction, UIMap) | Invoke for MediaAction. | |
Invoke(MouseAction, UIMap) | Invokes the provided MouseAction by using the provided UIMap. | |
Invoke(NavigateToUrlAction, UIMap) | Invokes the provided NavigateToUrlAction by using the provided UIMap. | |
Invoke(NoOperationAction, UIMap) | Invokes the provided NoOperationAction by using the provided UIMap. | |
Invoke(SendKeysAction, UIMap) | Invokes the provided SendKeysAction by using the provided UIMap. | |
Invoke(SetStateAction, UIMap) | Invokes the provided SetStateAction by using the provided UIMap. | |
Invoke(SetValueAction, UIMap) | Invokes the provided SetValueAction by using the provided UIMap. | |
Invoke(SharedStepsReferenceAction, UIMap) | Invokes the provided SharedStepsReferenceAction by using the provided UIMap. | |
Invoke(StringAssertAction, UIMap) | Invokes the provided StringAssertAction by using the provided UIMap. | |
Invoke(SystemAction, UIMap) | Invoke for SystemAction. | |
Invoke(TestStepMarkerAction, UIMap) | Invokes the provided TestStepMarkerAction by using the provided UIMap. | |
Invoke(TouchAction, UIMap) | Invoke for TouchAction. | |
Invoke(VerifyConfigurationAction, UIMap) | Invokes the provided VerifyConfigurationAction by using the provided UIMap. | |
Invoke(WarningAction, UIMap) | Invokes the provided WarningAction by using the provided UIMap. | |
Invoke(WebDialogAction, UIMap) | Invokes the provided WebDialogAction by using the provided UIMap. | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
SearchAndInvoke | Invokes the provided UITestAction by using the provided UIMap. | |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
WaitForThinkTime | Waits for an appropriate amount of think time before it invokes the provided action. |
Top
Remarks
When it executes the test actions, the test framework will implement a specific implementation of this class that is appropriate to the action type then pass it to the UITestAction.Invoke method.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.