Skip to content

Commit

Permalink
MultiColumnListRow detection updates (#4431)
Browse files Browse the repository at this point in the history
  • Loading branch information
eremv authored Nov 1, 2024
1 parent 237ff47 commit b9d8110
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ describe('MARC', () => {
);

TopMenuNavigation.navigateToApp(APPLICATION_NAMES.MARC_AUTHORITY);
MarcAuthorities.checkSearchOption('keyword');
MarcAuthorities.searchByParameter(
testData.searchOptionKeyword,
`C353995 ${testData.recordB}`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default {

getTargetRowWithClassificationName(classificationName) {
return classificationBrowsePane.find(
MultiColumnListRow({ innerHTML: including(classificationName) }),
MultiColumnListRow({ innerHTML: including(classificationName), isContainer: true }),
);
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const getEditableListRow = (rowNumber) => {

const getTargetRowWithFile = (authorityFileName) => {
return manageAuthorityFilesPane.find(
MultiColumnListRow({ innerHTML: including(authorityFileName) }),
MultiColumnListRow({ innerHTML: including(authorityFileName), isContainer: true }),
);
};

Expand Down

0 comments on commit b9d8110

Please sign in to comment.