(valueId: string, actionTitle: string)
| 46 | }; |
| 47 | |
| 48 | const getValueAction = (valueId: string, actionTitle: string): HTMLElement => { |
| 49 | const row = getDetails('Values') |
| 50 | .querySelector(`th[title="${valueId}"]`) |
| 51 | ?.closest('tr'); |
| 52 | expect(row).not.toBeNull(); |
| 53 | const action = row?.querySelector(`img[title="${actionTitle}"]`); |
| 54 | expect(action).not.toBeNull(); |
| 55 | return action as HTMLElement; |
| 56 | }; |
| 57 | |
| 58 | const getCellAction = ( |
| 59 | tableTitle: string, |
no test coverage detected
searching dependent graphs…