(tableElement: Element)
| 1081 | } |
| 1082 | |
| 1083 | function getRows(tableElement: Element): Element[] { |
| 1084 | return getElements(tableElement, '.mat-mdc-row'); |
| 1085 | } |
| 1086 | |
| 1087 | function getCells(row: Element): Element[] { |
| 1088 | if (!row) { |
no test coverage detected