Skip to content

Commit

Permalink
CNT-120 fix report failure (#2168)
Browse files Browse the repository at this point in the history
  • Loading branch information
lramakr authored Jan 13, 2025
1 parent 245bdf2 commit 202b4df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Feature: Classic NBS - Dedupe - User can view data in NBS Providers
Feature: Classic NBS - Dedupe - User can view data in NBS Place

Background:
Given I am logged in as secure user and stay on classic
Expand Down
6 changes: 3 additions & 3 deletions testing/regression/cypress/e2e/pages/nbs-classic/home.page.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ class ClassicHomePage {
cy.contains('button', 'Add new').eq(0).click()
cy.contains('button', 'Add new patient').eq(0).click()
cy.wait(2000)
cy.get("#asOf").eq(0).clear()
cy.get("#asOf").eq(0).type('03/04/2024');
cy.contains('button', 'Save changes').eq(0).click()
cy.get('input[id="administrative.asOf"]').eq(0).clear()
cy.get('input[id="administrative.asOf"]').eq(0).type('03/04/2024');
cy.contains('button', 'Save').eq(0).click()
cy.wait(3000)
cy.get('body').then(($body) => {
if($body.find('a:contains("View patient")').length > 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ class SearchAndFilterPage {
enterTextInMultiInputValue(value) {
cy.get('.multi-select__input').type(value);
cy.get('.multi-select__option--is-focused').click();
cy.get('#values').click();
}

showingContainedResults(text, columnName) {
Expand Down

0 comments on commit 202b4df

Please sign in to comment.