ValidationRuleRequiredAttributeValue.MatchAttributeValue Property

Gets or sets the value of an additional attribute that must be found in the HTML tag containing the attribute value to validate. Used in conjunction with MatchAttributeName.

Namespace:  Microsoft.VisualStudio.TestTools.WebTesting.Rules
Assembly:  Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)

Syntax

'Declaration
Public Property MatchAttributeValue As String
public string MatchAttributeValue { get; set; }
public:
property String^ MatchAttributeValue {
    String^ get ();
    void set (String^ value);
}
member MatchAttributeValue : string with get, set
function get MatchAttributeValue () : String
function set MatchAttributeValue (value : String)

Property Value

Type: System.String
An attribute value.

Remarks

This property, in conjunction with MatchAttributeName, provides additional information for specifying the attribute to validate.

Consider the following HTML:

<input name="Name" type="text" id="TextBox1" size="25" />

<input name="Email" type="text" id="TextBox2" size="25" />

<input name="Password" type="password" id="TextBox3" size="25" />

You would like to validate that there is an input box for the user to enter a password, and for security, that the type of the input is password.

Note

A text input displays letters while the user types; a password input displays * while the user types.

In order to do this, set the TagName property to input, the AttributeName property to type, and the ExpectedValue property to password.

Notice that all three tags in the HTML are input tags, and contain a type attribute. To validate the attribute in the correct tag, you must provide additional information. Set the MatchAttributeName property to name, and the MatchAttributeValue property to Password. Now there is only one tag that satisfies the specified criteria, and the attribute validation rule will be applied to that tag.

.NET Framework Security

See Also

Reference

ValidationRuleRequiredAttributeValue Class

Microsoft.VisualStudio.TestTools.WebTesting.Rules Namespace