UITestActionFilter.ProcessRule Method (IUITestActionStack)

 

When implemented in a derived class, processes your custom rule for aggregating several action results into one result, and returns a value that indicates whether to end aggregation or to continue aggregating actions.

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

Syntax

public abstract bool ProcessRule(
    IUITestActionStack actionStack
)
public:
virtual bool ProcessRule(
    IUITestActionStack^ actionStack
) abstract
abstract ProcessRule : 
        actionStack:IUITestActionStack -> bool
Public MustOverride Function ProcessRule (
    actionStack As IUITestActionStack
) As Boolean

Parameters

Return Value

Type: System.Boolean

true if aggregation should stop.

Remarks

If the actionStack contains the following action results

Activate Window 1
Click on text box 1
Type 'm' in text box 1
Type 'y' in text box 1
Click on OK button

you can use this method to aggregate the action results for text box 1:

Activate Window 1
Type 'my' in text box 1
Click on OK button

See Also

IUITestActionStack
UITestActionFilter Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace
Enable Coded UI Testing of Your Controls

Return to top