Skip to content

Commit

Permalink
[Synthetics] Unskip and fix Synthetics global params e2e tests (#192400)
Browse files Browse the repository at this point in the history
## Summary

Goal is to unskip the test suite for global params in Synthetics e2e.

(cherry picked from commit f15e825)
  • Loading branch information
justinkambic committed Sep 11, 2024
1 parent 541c678 commit 4e2a099
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ journey(`GlobalParameters`, async ({ page, params }) => {
await page.click('[placeholder="Search..."]');
await page.fill('[placeholder="Search..."]', 'username');
await page.click('text=username');
await page.click('[aria-label="Clear input"]');
await page.click('[aria-label="Clear search input"]');
await page.click('[placeholder="Search..."]');
await page.fill('[placeholder="Search..."]', 'website');
await page.click('text=website username');
Expand All @@ -69,7 +69,7 @@ journey(`GlobalParameters`, async ({ page, params }) => {
await page.fill('[placeholder="Search..."]', 'extra');
await page.keyboard.press('Enter');
await page.click('text=No items found');
await page.click('[aria-label="Clear input"]');
await page.click('[aria-label="Clear search input"]');
});

step('Click text=Delete ParameterEdit Parameter >> :nth-match(button, 2)', async () => {
Expand All @@ -86,7 +86,7 @@ journey(`GlobalParameters`, async ({ page, params }) => {
await page.click('text=staging');
await page.click('button:has-text("Tags")');
await page.click('[aria-label="Tags"] >> text=staging');
await page.click('[aria-label="Clear input"]');
await page.click('[aria-label="Clear search input"]');
});
step('Click text=Delete ParameterEdit Parameter >> button', async () => {
await page.click('text=Delete ParameterEdit Parameter >> button');
Expand Down

0 comments on commit 4e2a099

Please sign in to comment.