(page, label)
| 21 | const reportName = buildUniqueName('Playwright Regression', process.env.REPORT_NAME); |
| 22 | |
| 23 | async function openThresholdDialog(page, label) { |
| 24 | await openOptionsMenuItem(page, 'optionsMenuThreshold', label); |
| 25 | await page.locator('#thresholdDimension').waitFor({ state: 'visible', timeout: 15000 }); |
| 26 | } |
| 27 | |
| 28 | async function thresholdTexts(page) { |
| 29 | return page.locator('#thresholdList .thresholdText').evaluateAll((nodes) => |
no test coverage detected