Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
xsalonx committed Aug 2, 2024
2 parents b8f2fd4 + 9266917 commit d6f44ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/public/qcFlags/gaqOverview.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ module.exports = () => {
expect(await getPopoverInnerText(await page.waitForSelector('tbody tr:nth-of-type(2) td:nth-of-type(4) .popover-trigger')))
.to.be.equal('This flag is not verified');
await waitForNavigation(page, () => pressElement(page, 'tbody tr:nth-of-type(2) td:nth-of-type(4) a', true));
await pressElement(page, '#verify-qc-flag', true);
await pressElement(page, '#verify-qc-flag');
await pressElement(page, '#submit', true);
await waitForNavigation(page, () => pressElement(page, '#qc-flag-details-dataPass a', true));
await waitForNavigation(page, () => pressElement(page, '#row106-globalAggregatedQuality a', true));
Expand All @@ -183,8 +183,8 @@ module.exports = () => {
// Verify QC flag of EMC detector
expect(await getPopoverInnerText(await page.waitForSelector('tbody tr:nth-of-type(2) td:nth-of-type(5) .popover-trigger')))
.to.be.equal('This flag is not verified');
await waitForNavigation(page, () => pressElement(page, 'tbody tr:nth-of-type(2) td:nth-of-type(5) a'));
await pressElement(page, '#verify-qc-flag', true);
await waitForNavigation(page, () => pressElement(page, 'tbody tr:nth-of-type(2) td:nth-of-type(5) a', true));
await pressElement(page, '#verify-qc-flag');
await pressElement(page, '#submit', true);
await waitForNavigation(page, () => pressElement(page, '#qc-flag-details-dataPass a', true));
await waitForNavigation(page, () => pressElement(page, '#row106-globalAggregatedQuality a', true));
Expand Down

0 comments on commit d6f44ee

Please sign in to comment.