C# Class Automation.UI.Util.Matchers

Supported matchers.
Show file Open project: vijayakumarsuraj/UIAutomation

Public Properties

Property Type Description
Contains Matcher
EndsWith Matcher
Regex Matcher
StartsWith Matcher

Property Details

Contains public static property

Gets a matcher that will check if the actual value "contains" the expected value.
public static Matcher Contains
return Matcher

EndsWith public static property

Gets a matcher that will check if the actual value "ends with" the expected value.
public static Matcher EndsWith
return Matcher

Regex public static property

Gets a matcher that will check if the actual value matches the expected regular expression.
public static Matcher Regex
return Matcher

StartsWith public static property

Gets a matcher that will check if the actual value "starts with" the expected value.
public static Matcher StartsWith
return Matcher