WebForm Constructor | Obsolete; use WebFormTester instead. |
AspId (inherited from WebFormTester) | The ASP.NET ID of the form being tested. It corresponds to the ID in the ASP.NET source code. |
Description (inherited from WebFormTester) | A human-readable description of the location of the control. |
HtmlId (inherited from WebFormTester) | The HTML ID of the form being tested. It corresponds to the ID of the HTML tag rendered by the server. It's useful for looking at raw HTML while debugging. |
HtmlIdAndDescription (inherited from WebFormTester) | A human-readable description of the location of the control being tested. This property describes the location of the control as well as providing the HTML ID of the control, if present. |
Variables (inherited from WebFormTester) | The HTML form variables in this form. |
Visible (inherited from Tester) | Returns true if the control is visible on the current page. |
Equals (inherited from Object) | |
GetHashCode (inherited from Object) | |
GetType (inherited from Object) | |
IsPostBack (inherited from WebFormTester) | Checks a string to see if it contains a post-back script. Typically you should just use OptionalPostBack instead. |
OptionalPostBack (inherited from WebFormTester) | Like PostBack, except that it does nothing if candidatePostBackScript doesn't contain a post-back script. |
PostBack (inherited from WebFormTester) | Overloaded. Emulates ASP.NET's post-back script. To simply submit the form, use Submit instead. If you have access to the JavaScript call string, use OptionalPostBack or the other form of PostBack. |
Submit (inherited from WebFormTester) | Submit this form to the server. |
ToString (inherited from Tester) | Provides a friendly message reminding users not to put testers in assertions. |
Tag (inherited from WebFormTester) | The HTML tag this tester corresponds to. |
AssertVisible (inherited from Tester) | Experimental. May change or go away in future revisions. Allows testers to assert that their control should be visible before some operations. Using this method provides clearer error messages to users of the tester. |
Finalize (inherited from Object) | |
MemberwiseClone (inherited from Object) |
Action (inherited from WebFormTester) | The "action" attribute of this form; will be an empty string if there isn't one. |
Browser (inherited from WebFormTester) | The browser instance used to load the page containing the thing being tested. |
Form (inherited from WebFormTester) | The tester for the form containing the thing being tested. |
Method (inherited from WebFormTester) | The "method" attribute of this form. |
GetChildElementHtmlId (inherited from WebFormTester) | Returns the HTML ID of a child control. Useful when implementing testers for container controls that do HTML ID mangling. This method is very likely to change in a future release. |