Skip to content

Commit d09d168

Browse files
[Security analytics] add force option to avoid element getting covered error (#1102) (#1103)
Signed-off-by: Amardeepsingh Siglani <[email protected]> (cherry picked from commit eb10f07) Co-authored-by: Amardeepsingh Siglani <[email protected]>
1 parent 4b28ac6 commit d09d168

File tree

1 file changed

+2
-2
lines changed
  • cypress/integration/plugins/security-analytics-dashboards-plugin

1 file changed

+2
-2
lines changed

cypress/integration/plugins/security-analytics-dashboards-plugin/2_rules.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ describe('Rules', () => {
517517
);
518518
toastShouldExist();
519519
getSelectionPanelByIndex(0).within(() =>
520-
getMapValueField().type('FieldValue')
520+
getMapValueField().type('FieldValue', { force: true })
521521
);
522522

523523
// selection map list field
@@ -528,7 +528,7 @@ describe('Rules', () => {
528528
toastShouldExist();
529529
getSelectionPanelByIndex(0).within(() => {
530530
getListRadioField().click({ force: true });
531-
getMapListField().type('FieldValue');
531+
getMapListField().type('FieldValue', { force: true });
532532
});
533533

534534
// condition field

0 commit comments

Comments
 (0)