Property | Type | Description | |
---|---|---|---|
ChopOffHeader | string[][] | ||
GetRowTag | HtmlTagTester |
Method | Description | |
---|---|---|
DataGridTester ( string aspId ) : System |
Create a tester for a top-level control. Use this constructor for testing most controls. Testers created with this constructor will test pages loaded by the HttpClient.Default HttpClient.
|
|
DataGridTester ( string aspId, Tester container ) : System |
Create a tester for a nested control. Use this constructor when the control you are testing is nested within another control, such as a DataGrid or UserControl. You should also use this constructor when you're not using the HttpClient.Default HttpClient.
|
|
GetHeaderRow ( ) : Row |
The data grid's header row. The first row is always assumed to be the header row.
|
|
GetRow ( int rowNumber ) : Row |
Returns a row from the data grid. Row number zero is the first row after the header row.
|
|
GetRowByCellValue ( int columnNumber, string renderedValue ) : Row |
Returns a row containing a specific cell. Looks for the cell as it is returned by RenderedCells.
|
|
Sort ( int columnNumberZeroBased ) : void |
Click a column heading link that was generated with the "allowSorting='true'" attribute.
|
Method | Description | |
---|---|---|
GetChildElementHtmlId ( string aspId ) : string |
Method | Description | |
---|---|---|
ChopOffHeader ( string cells ) : string[][] | ||
GetRowTag ( int rowNumber ) : HtmlTagTester |
public DataGridTester ( string aspId ) : System | ||
aspId | string | The ID of the control to test (look in the /// page's ASP.NET source code for the ID). |
return | System |
public DataGridTester ( string aspId, Tester container ) : System | ||
aspId | string | The ID of the control to test (look in the /// page's ASP.NET source code for the ID). |
container | Tester | A tester for the control's container. /// (In the page's ASP.NET source code, look for the tag that the /// control is nested in. That's probably the control's /// container.) |
return | System |
protected GetChildElementHtmlId ( string aspId ) : string | ||
aspId | string | |
return | string |
public GetRowByCellValue ( int columnNumber, string renderedValue ) : Row | ||
columnNumber | int | The column containing the cell to look for (zero-based). |
renderedValue | string | The cell to look for. |
return | Row |
public Sort ( int columnNumberZeroBased ) : void | ||
columnNumberZeroBased | int | The column to sort (zero-based) |
return | void |