Skip to content

Commit

Permalink
[Security analytics] add force option to avoid element getting covere…
Browse files Browse the repository at this point in the history
…d error (opensearch-project#1102)

Signed-off-by: Amardeepsingh Siglani <amardeep7194@gmail.com>
  • Loading branch information
amsiglan authored Feb 16, 2024
1 parent 8ccd725 commit eb10f07
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ describe('Rules', () => {
);
toastShouldExist();
getSelectionPanelByIndex(0).within(() =>
getMapValueField().type('FieldValue')
getMapValueField().type('FieldValue', { force: true })
);

// selection map list field
Expand All @@ -527,7 +527,7 @@ describe('Rules', () => {
toastShouldExist();
getSelectionPanelByIndex(0).within(() => {
getListRadioField().click({ force: true });
getMapListField().type('FieldValue');
getMapListField().type('FieldValue', { force: true });
});

// tags field
Expand Down

0 comments on commit eb10f07

Please sign in to comment.