You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Verify that user can`t start new commands from the Workbench while command(s) is executing
62
61
awaitt.expect(workbenchPage.submitCommandButton.withAttribute('disabled').exists).ok('Run button is not disabled',{timeout: 5000});
63
62
// Verify that user can see spinner over the disabled and shrunk Run button
64
63
awaitt.expect(workbenchPage.runButtonSpinner.exists).ok('Loading spinner is not displayed for Run button',{timeout: 5000});
65
-
awaitt.expect(workbenchPage.queryCardContainer.find(workbenchPage.cssDeleteCommandButton).withAttribute('disabled').count).eql(4,'The number of commands is incorrect');
64
+
awaitt.expect(workbenchPage.queryCardContainer.find(workbenchPage.cssDeleteCommandButton).withAttribute('disabled').count).eql(Number(pipelineValues[3]),'The number of commands is incorrect');
66
65
});
67
66
test('Verify that user can interact with the Editor while command(s) in progress',asynct=>{
0 commit comments