Microsoft.VisualStudio.TestTools.WebTesting.Rules Namespace
The Microsoft.VisualStudio.TestTools.WebTesting.Rules namespace contains a set of rules used by Web tests to test Web pages. These rules provide Web tests a set of tools to test the content of Web pages. Additionally, custom rules can be created to extend the functionality of Web tests. Rules are identified by two categories: extraction rules and validation rules. Extraction rules find content in Web pages and adds the information to the context which can be passed to future requests. Validation rules test for the existence of content.
Classes
Class | Description | |
---|---|---|
ExtractAttributeValue | Extract the value of an attribute from a specified HTML tag. | |
ExtractFormField | Extracts the value of a form field attribute and adds it to the WebTestContext. | |
ExtractHiddenFields | Extracts all hidden fields from the response and adds each value to the context. | |
ExtractHttpHeader | Used to extract an HTTP header value from the response and place the value of the header into the WebTestContext. | |
ExtractRegularExpression | Extracts text from the response that matches the regular expression pattern. | |
ExtractText | Extract text from the HtmlDocument based on delimiting start/end strings, matching regular expressions, and the occurrence of the text. The extracted text is added to the WebTestContext. | |
ValidateFormField | Validates the name and value of a form field attribute. | |
ValidateResponseUrl | A validation rule validates that a redirect occurs during the run of the Web test if and only if the redirect was expected. | |
ValidationRuleFindText | Validates that the specified text exists or does not exist in the text response. | |
ValidationRuleRequestTime | Validates that the response for a request is returned within the specified period of time. | |
ValidationRuleRequiredAttributeValue | Validates that the HtmlDocument provided by the response contains a tag that includes an attribute that has a specified value. | |
ValidationRuleRequiredTag | Validates the existence of a specified tag in the response. |
See Also
Reference
Other Resources
How to: Add a Validation Rule to a Web Test
How to: Add an Extraction Rule to a Web Test