@processmaker/cypress-utils
Advanced tools
Comparing version 1.0.371 to 1.0.372
{ | ||
"name": "@processmaker/cypress-utils", | ||
"version": "1.0.371", | ||
"version": "1.0.372", | ||
"description": "ProcessMaker Cypress Testing Utilities", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -42,3 +42,3 @@ import selectors from "#selectors/processTesting"; | ||
cy.iframe(iframeSelector).xpath(selectors.itemSP).should('have.attr', 'aria-label').and('equal', `${startingPoint}. `); | ||
cy.iframe(iframeSelector).find(selectors.inputSP).type('{enter}', {force:true, delay: 1000}); | ||
cy.iframe(iframeSelector).find(selectors.inputSP).type('{enter}', {force:true, delay: 500}); | ||
} | ||
@@ -452,4 +452,4 @@ | ||
clickOnTestRunsTab() { | ||
cy.get(selectors.testRunTabScenarios).should('be.visible'); | ||
cy.get(selectors.testRunTabScenarios).click(); | ||
cy.get(selectors.testRunTabScenarios).should('be.visible').click(); | ||
//cy.get(selectors.testRunTabScenarios).click(); | ||
} | ||
@@ -511,3 +511,3 @@ | ||
cy.xpath(selectors.containerSP).click({force:true}); | ||
cy.get(selectors.inputSP).type(`{backspace}${startingPoint}`, {delay: 1000}).should('have.value', startingPoint); | ||
cy.get(selectors.inputSP).type(`{backspace}${startingPoint}`, {delay: 500}).should('have.value', startingPoint); | ||
cy.xpath(selectors.itemSP).should('have.attr', 'aria-label').and('equal', `${startingPoint}. `); | ||
@@ -514,0 +514,0 @@ cy.get(selectors.inputSP).type('{enter}'); |
1892628