Skip to content

Commit

Permalink
NTR - Fix e2e test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisGarding committed Jun 13, 2023
1 parent 5378b93 commit fc2c210
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Tests/E2E/test/backend_tracking_url.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ test.describe('Tracking url testing', () => {
await page.hover('.customers--main');
await page.click('.customers--orders');

const popupCloseButtons = await page.$$('text=\'Schließen\'');
for (let i = 0; i < popupCloseButtons.length; i++) {
await popupCloseButtons[i].click();
}

await page.waitForSelector('.sprite-pencil');
const orders = await page.$$('.sprite-pencil');

Expand Down

0 comments on commit fc2c210

Please sign in to comment.