[e2e tests] Fix flaky product-attributes-block-editor -> can add existing attributes (#50485)
This commit is contained in:
parent
e280ba3ddc
commit
49109ea287
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: dev
|
||||
|
||||
E2E tests: fix flakiness in product attributes test
|
|
@ -282,7 +282,10 @@ test(
|
|||
} );
|
||||
|
||||
await test.step( 'add an existing attribute', async () => {
|
||||
await page.getByRole( 'button', { name: 'Add new' } ).click();
|
||||
await page
|
||||
.getByRole( 'button', { name: 'Add new' } )
|
||||
.first()
|
||||
.click();
|
||||
|
||||
await page.waitForLoadState( 'domcontentloaded' );
|
||||
|
||||
|
|
Loading…
Reference in New Issue