This commit is contained in:
Matthias Mair 2026-06-27 20:45:31 +02:00
parent b163557ca8
commit d75ffe3229
No known key found for this signature in database
GPG Key ID: A593429DDA23B66A
1 changed files with 3 additions and 1 deletions

View File

@ -76,7 +76,9 @@ test('Plugins - User Settings', async ({ browser }) => {
await loadTab(page, 'Plugin Settings');
// User settings for the "Sample Plugin" should be visible
await page.getByRole('button', { name: 'Sample Plugin' }).click();
await page
.getByRole('button', { name: 'Sample Plugin', exact: true })
.click();
await page.getByText('User Setting 1').waitFor();
await page.getByText('User Setting 2').waitFor();