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 (#1102)

Signed-off-by: Amardeepsingh Siglani <[email protected]>
(cherry picked from commit eb10f07)
  • Loading branch information
amsiglan authored and github-actions[bot] committed Feb 16, 2024
1 parent 339ec78 commit 3cf3897
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ describe('Rules', () => {
);
toastShouldExist();
getSelectionPanelByIndex(0).within(() =>
getMapValueField().type('FieldValue')
getMapValueField().type('FieldValue', { force: true })
);

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

// condition field
Expand Down

0 comments on commit 3cf3897

Please sign in to comment.