UITestActionInvoker Class
Provides constructors and methods to start a specific UI test action.
Namespace: Microsoft.VisualStudio.TestTools.UITest.Common
Assembly: Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)
Inheritance Hierarchy
System.Object
Microsoft.VisualStudio.TestTools.UITest.Common.UITestActionInvoker
Microsoft.VisualStudio.TestTools.UITest.CodeGeneration.UIActionInterpreter
Syntax
public abstract class UITestActionInvoker : IDisposable
public ref class UITestActionInvoker abstract : IDisposable
[<AbstractClass>]
type UITestActionInvoker =
class
interface IDisposable
end
Public MustInherit Class UITestActionInvoker
Implements IDisposable
Constructors
Name | Description | |
---|---|---|
UITestActionInvoker() | Initializes a new instance of the UITestActionInvoker class. |
Properties
Name | Description | |
---|---|---|
InRetryMode | Gets or sets a value that indicates whether the invoker is in retry mode. |
Methods
Name | Description | |
---|---|---|
Cancel() | Cancels the current invocation task. |
|
Dispose() | Releases resources. |
|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (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() | (Inherited from Object.) |
|
SearchAndInvoke(UITestAction, UIMap, CustomInvoker) | Invokes the provided UITestAction by using the provided UIMap. |
|
ToString() | (Inherited from Object.) |
|
WaitForThinkTime(UITestAction) | Waits for an appropriate amount of think time before it invokes the provided action. |
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.
See Also
UITestAction
Microsoft.VisualStudio.TestTools.UITest.Common Namespace
Return to top