Skip to content

Commit

Permalink
more time in function process
Browse files Browse the repository at this point in the history
  • Loading branch information
PaolaPellegrini committed Dec 11, 2024
1 parent 6cb0b0a commit 7b8c663
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/process.js
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ export class Process {


cy.xpath(elementStartEventXpath.replace('nameElem', elementName)).first().should('be.visible').click({force:true});
cy.wait(2000);
cy.wait(4000);
cy.get("[data-cy='inspector-button']").should('be.visible').click();
cy.get('#accordion-button-permissions-accordion').should('be.visible').click();
//Open hamburger menu if not is open
Expand Down Expand Up @@ -1216,7 +1216,7 @@ export class Process {
if (text !== fullName) {
cy.xpath(startPemrissions_opSelectListSelector.replace('nameType', 'user')).click();
cy.xpath(startPemrissions_opInputSelector.replace('nameType', 'user')).type(userName).should('have.value', userName);
cy.wait(2000);
cy.wait(4000);
cy.xpath('//div[@class="multiselect__content-wrapper"]//ul[contains(@style," inline")]/li[1]')
.should('have.attr', 'aria-label') // yields the "href" attribute
.and('equal', fullName + ". ");
Expand Down

0 comments on commit 7b8c663

Please sign in to comment.