RepeaterTester.RepeaterFooterTester overview
![]() | Create a tester for a specific item in a repeater. |
![]() | The ASP.NET ID of the thing being tested. For Repeater templates, it is automatically generated. |
![]() | A human-readable description of the location of the control. |
![]() | True if the control is enabled. |
![]() | The HTML ID of the control 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. |
![]() | 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. |
![]() | Returns true if the control is visible on the current page. |
![]() | |
![]() | |
![]() | |
![]() | Provides a friendly message reminding users not to put testers in assertions. |
![]() | True if the control is disabled. |
![]() |
![]() | 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. |
![]() | |
![]() | Creates an ID for a control that doesn't have one provided in the .aspx page. The tester using this method must algorithmically determine what number ASP.NET provided to the control. In other words, control number "3" turns into an ID of "ctl03" in ASP.NET 2.0 and "_ctl3" in ASP.NET 1.x. |
![]() | Checks a string to see if it contains a post-back script. Typically you should just use OptionalPostBack instead. |
![]() | |
![]() | Like PostBack, but doesn't fail if candidatePostBackScript doesn't contain a post-back script. |
![]() | Overloaded. Trigger a post-back. ASP.NET has a post-back idiom that often shows up as a Javascript "__doPostBack" call. This method exists to make it easy to write testers for controls that do so. Just take the string that contains the post- back script and pass it to this method. Use OptionalPostBack if the script isn't always present. |
![]() | The browser instance used to load the page containing the form being tested. |
![]() | The form containing this control |
![]() | |
![]() | 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. |
![]() | |
![]() | Post the form containing this control to the server. |
RepeaterTester.RepeaterFooterTester Class | NUnit.Extensions.Asp.AspTester Namespace