MCPcopy Index your code
hub / github.com/angular/components / getCellTextByIndex

Function getCellTextByIndex

src/material/table/testing/row-harness.ts:43–46  ·  view source on GitHub ↗

Gets the text of the cells in the row.

(filter: CellHarnessFilters = {})

Source from the content-addressed store, hash-verified

41
42 /** Gets the text of the cells in the row. */
43 async getCellTextByIndex(filter: CellHarnessFilters = {}): Promise<string[]> {
44 const cells = await this.getCells(filter);
45 return parallel(() => cells.map(cell => cell.getText()));
46 }
47
48 /** Gets the text inside the row organized by columns. */
49 async getCellTextByColumnName(): Promise<MatRowHarnessColumnsText> {

Callers

nothing calls this directly

Calls 3

parallelFunction · 0.90
getCellsMethod · 0.45
getTextMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…