Skip to content

Commit

Permalink
#1578 Fixed running issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nimya-aot committed Nov 26, 2024
1 parent e8af9db commit 763d0dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ describe('Form Designer', () => {
cy.waitForLoad();

//cy.get('.mdi-list-box-outline').click();
cy.get('[data-test="canViewFormSubmissions"]').click();
cy.get('[data-test="canViewFormSubmissions"]').click({multiple:true,force:true});
cy.waitForLoad();
cy.get('.v-data-table__tr > :nth-child(2)').should('exist');
cy.get('input[type="checkbox"]').then($el => {
Expand Down
6 changes: 3 additions & 3 deletions tests/functional/cypress/e2e/form-submission-export.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,14 +208,14 @@ describe("Form Designer", () => {
cy.get('input[type=file]').should('not.to.be.null');
fileUploadInputField.attachFile('add1.png');
cy.waitForLoad();
//cy.get('label').contains('Upload template file').click({multiple:true,force:true});
//cy.get('.v-messages__message').contains('The template must use one of the following extentions: .txt, .docx, .html, .odt, .pptx, .xlsx');
cy.get('label').contains('Upload template file').click({multiple:true,force:true});
cy.get('.v-messages__message').contains('The template must use one of the following extentions: .txt, .docx, .html, .odt, .pptx, .xlsx');
cy.get('#file-input-submit').should('not.be.enabled');
//
cy.waitForLoad();
//Upload print template
cy.get('[tabindex="-1"] > .v-btn__content').click();
cy.get('.v-slide-group__content > [tabindex="-1"]').click();
cy.get('[tabindex="-1"] > .v-btn__content').click();
cy.waitForLoad();
cy.get('.mdi-close-circle').click();
cy.get('input[type=file]').attachFile('test.docx');
Expand Down

0 comments on commit 763d0dc

Please sign in to comment.