Skip to content

Commit

Permalink
correct utils
Browse files Browse the repository at this point in the history
  • Loading branch information
PaolaPellegrini committed Sep 26, 2024
1 parent e6dc2f7 commit 1ae4fdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pages/executionConnectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -438,13 +438,14 @@ export class ExecutionConnectors {

//Step 1: Import PM Block
pmBlock.importPMBlock(pmblockPath);
cy.wait(2000);
cy.wait(4000);
cy.get('.btn-primary > span').click();

//Step 2: CLick on PM Block
navHelper.navigateToPmBlock(pmblockName);

//Step 3: Open the PMBlock Imported
cy.wait(4000);
pmBlock.searchPmblockAndSelectOptions(pmblockName, "edit");

//Step 4: verify fortm task in Pm Block
Expand Down
2 changes: 1 addition & 1 deletion pages/pmBlock.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export class PMBlock {
cy.xpath(selectors.searchInputPmblock).type(`${pmblockName}{enter}`,{delay:100}).should("have.value", pmblockName);
cy.xpath(selectors.searchInputPmblock).type('{enter}');
cy.wait(2000);
//cy.xpath(selectors.threePointsBtnXpathPmblock).should("be.visible");
cy.xpath(selectors.threePointsBtnXpathPmblock).should("be.visible");
cy.xpath(selectors.threePointsBtnXpathPmblock).first().should("be.visible");
cy.xpath(selectors.threePointsBtnXpathPmblock).first().click();

Expand Down

0 comments on commit 1ae4fdb

Please sign in to comment.