NUnit.Extensions.Asp.HtmlTester.HtmlControlTester.HtmlControlTester C# (CSharp) Method

HtmlControlTester() public method

Create a tester for an HTML tag that's on a page with multiple forms using an XPath description.
public HtmlControlTester ( string xpath, string description, Tester container ) : System
xpath string The XPath description of the tag.
description string A human-readable description of this tag (for error reporting).
container Tester A tester for the control's container. A WebFormTester /// will usually be most appropriate.
return System
        public HtmlControlTester(string xpath, string description, Tester container)
            : base(xpath, description, container)
        {
        }

Same methods

HtmlControlTester::HtmlControlTester ( string htmlId ) : System
HtmlControlTester::HtmlControlTester ( string aspId, Tester container ) : System
HtmlControlTester::HtmlControlTester ( string aspId, Tester container, bool runAtServer ) : System
HtmlControlTester::HtmlControlTester ( string xpath, string description ) : System
HtmlControlTester