Skip to content

Commit

Permalink
Correct button name in Query Selection test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Lanza committed Oct 23, 2024
1 parent 8386f3d commit d27a871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e-tests/elementView.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ async function setQuery(page: Page, att: string, type: string, query: string): P
await page.getByRole('option', { name: type, exact: true }).click();
await page.getByPlaceholder('Query').click();
await page.getByPlaceholder('Query').fill(query);
await page.getByRole('button', { name: 'Save' }).click();
await page.getByRole('button', { name: 'Apply' }).click();
}

test('Query Selection', async ({ page }) => {
Expand Down

0 comments on commit d27a871

Please sign in to comment.