Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pablobarrososso committed Sep 23, 2024
1 parent 21934e9 commit 70ae9fb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"date-fns": "^3.6.0"
},
"dependencies": {
"@processmaker/cypress-utils": "^1.0.216"
"@processmaker/cypress-utils": "^1.0.219"
}
}
2 changes: 1 addition & 1 deletion pages/taskPreviewPane.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import selectors from "#selectors/taskPreviewPane";

export class taskPreviewPane{
export class taskPreviewPane {
searchForTaskAndProcessFilterOneStatus(status){
cy.xpath(selectors.taskFilter).should('be.visible').click({force:true});
cy.xpath('//select[@data-cy="value0"]').select(status);
Expand Down
4 changes: 2 additions & 2 deletions pages/taskPreviewPaneExecution.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const taskPreview = new taskPreviewPane();
export class taskPreviewPaneExecution{
ExecutionTCP43112TaskA(){
navHelper.navigateToTasksPage();
taskPreviewPane.searchForTaskAndProcessFilterOneStatus('Self Service');
taskPreview.searchForTaskAndProcessFilterOneStatus('Self Service');
cy.xpath(selectors.eyeTaskPreview.replace('task','Task Preview Pane A')).eq(0).trigger('mouseover', {force:true}).invoke('show');
cy.xpath(selectors.eyeButton.replace('task','Task Preview Pane A')).eq(0).should('be.visible').click();
cy.frameLoaded(".iframe");
Expand All @@ -17,7 +17,7 @@ export class taskPreviewPaneExecution{
.should('be.visible')
.click({force:true});
navHelper.navigateToTasksPage();
taskPreviewPane.searchForTaskAndProcessFilterOneStatus('In Progress');
taskPreview.searchForTaskAndProcessFilterOneStatus('In Progress');
cy.xpath(selectors.eyeTaskPreview.replace('task','Task Preview Pane A')).eq(0).trigger('mouseover', {force:true}).invoke('show');
cy.xpath(selectors.eyeButton.replace('task','Task Preview Pane A')).eq(0).should('be.visible').click();
cy.frameLoaded(".iframe");
Expand Down

0 comments on commit 70ae9fb

Please sign in to comment.