Microsoft.VisualStudio.TestTools.WebTesting.Rules Namespace
The Microsoft.VisualStudio.TestTools.WebTesting.Rules namespace contains a set of rules used by Web performance tests to test Web pages. These rules provide Web performance tests a set of tools to test the content of Web pages. Additionally, custom rules can be created to extend the functionality of Web performance 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 | |
---|---|---|
ConditionalRuleTypeAttribute | Attribute that represents the conditional rule type attribute. This attribute specifies the conditional rule type for which the conditional rule applies. | |
ContextParameterExistenceRule | Class to contain a condition rule that checks whether a context parameter exists. | |
CookieComparisonRule | Class to contain a conditional rule that checks the value of a cookie. | |
CookieExistenceRule | Class to contain a conditional rule that checks whether a specific cookie exists. | |
CountingLoopRule | Class to contain a conditional rule that is used to execute a loop for a particular number of times. | |
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 | Extracts text from the HtmlDocument that is based on delimiting start/end strings, matching regular expressions, and the occurrence of the text. The extracted text is added to the WebTestContext. | |
ForLoopRule | Class to contain a conditional rule that represents an iteration statement, an initialization statement, a test expression, and an increment statement. | |
IsContextParameterNameAttribute | Attribute to specify that a property represents a context parameter name. | |
LastRequestOutcomeRule | Class to contain a conditional rule that compares the outcome of the last request. Applies only to condition statements. | |
LastResponseCodeRule | Class to contain a conditional rule that checks the response code of the last response. Applies only to condition statements. | |
NumericalComparisonRule | Class to contain a conditional rule that consists of a numeric comparison. | |
ProbabilityRule | Class to contain a conditional rule that is based on the provided probability. | |
RuleExecutionOrderAttribute | Attribute to specify when a rule should be executed relative to the dependent requests of this rule. | |
RuleResult | Represents a result from the execution of a Web performance test rule. | |
StringComparisonRule | Class to contain a conditional rule that consists of a string comparison. | |
ValidateFormField | Validates the name and value of a form field attribute. | |
ValidateHtmlSelectTag | A validation rule that is used to validate the selected option from an HTML select tag. | |
ValidateHtmlTagInnerText | Validation rule that is used to validate the inner text from an HTML tag. | |
ValidateResponseUrl | Represents a rule that validates that a redirect occurs during the run of the Web performance test 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. | |
ValidationRuleResponseTimeGoal | Used to check that the response time for a request is less than or equal to the response time goal that is specified in the request properties. |
See Also
Reference
Other Resources
Working with Web Tests Overview
How to: Add a Validation Rule to a Web Performance Test
How to: Add an Extraction Rule to a Web Performance Test
How to: Create a Custom Validation Rule for a Web Performance Test
How to: Create a Custom Extraction Rule for a Web Performance Test