Fix flaky filling product price in merchant/products/block-editor/create-variable-product-block-editor.spec.js (#48276)
* Fix flaky filling product price * Add changelog
This commit is contained in:
parent
a5bbf14e6f
commit
31e8b6cc6b
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: dev
|
||||
|
||||
E2E tests: fixing flaky merchant create variable product test
|
|
@ -234,7 +234,11 @@ test.describe( 'Variations tab', () => {
|
|||
|
||||
await page
|
||||
.getByLabel( 'Regular price', { exact: true } )
|
||||
.fill( '100' );
|
||||
.waitFor( { state: 'visible' } );
|
||||
|
||||
await page
|
||||
.getByLabel( 'Regular price', { exact: true } )
|
||||
.pressSequentially( '100' );
|
||||
|
||||
await page
|
||||
.locator( '.woocommerce-product-tabs' )
|
||||
|
|
Loading…
Reference in New Issue