Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MayraMelisa committed Dec 10, 2024
1 parent 89e0fdc commit 390abce
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions pages/execution.js
Original file line number Diff line number Diff line change
Expand Up @@ -5464,9 +5464,25 @@ async actionsAndAssertionsOfTCP42332_4(taskName, process_id, subprocess_id, subp
actionsAndAssertionsOfTCP42250(requestId){
//Complete task form 1
cy.xpath('//div[@class="card card-body border-top-0 h-100 form-screen"]').should('be.visible');
cy.get('[data-cy="screen-field-email"]').should('be.visible').type('[email protected]').should('have.value','[email protected]');
cy.xpath('//label[text()="Date_1"]//ancestor::div[@class="col-sm-4"]//input').should('be.visible').type('2022-10-20');
cy.xpath('//label[text()="Date_2"]//ancestor::div[@class="col-sm-4"]//input').should('be.visible').type('2010-10-20{enter}');
cy.get('[data-cy="screen-field-email"]')
.should('be.visible')
.type('[email protected]')
.should('have.value','[email protected]');

cy.xpath('//label[text()="Date_1"]//ancestor::div[@class="col-sm-4"]//input')
.should('be.visible')
.click()
.type('10/20/2022',{delay:100});

cy.xpath('//label[text()="Date_2"]//ancestor::div[@class="col-sm-4"]//input')
.should('be.visible')
.click()
.type('10/20/2010{enter}',{delay:50});

cy.xpath('//label[text()="Date_1"]//ancestor::div[@class="col-sm-4"]//input')
.clear()
.type('10/20/2022',{delay:100});

cy.xpath('//label[text()="Select"]/parent::div//div[@class="multiselect__tags"]').click();
cy.xpath('//label[text()="Select"]/parent::div//input').should('be.visible').type('Bolivia').should('have.value','Bolivia');
cy.xpath('//label[text()="Select"]/parent::div//input').type('{enter}');
Expand Down

0 comments on commit 390abce

Please sign in to comment.