Add 1 second wait time between 2 UI blocks / AJAX calls
This commit is contained in:
parent
2e61321e2a
commit
26ade8bb1f
|
@ -94,6 +94,7 @@ describe( 'Add New Variable Product Page', () => {
|
|||
|
||||
// Wait for attribute form to save (triggers 2 UI blocks)
|
||||
await uiUnblocked();
|
||||
await page.waitFor( 1000 );
|
||||
await uiUnblocked();
|
||||
|
||||
// Create variations from attributes
|
||||
|
|
|
@ -78,6 +78,7 @@ const createVariableProduct = async () => {
|
|||
|
||||
// Wait for attribute form to save (triggers 2 UI blocks)
|
||||
await uiUnblocked();
|
||||
await page.waitFor( 1000 );
|
||||
await uiUnblocked();
|
||||
|
||||
// Create variations from attributes
|
||||
|
|
Loading…
Reference in New Issue