Skip to content

Commit c72b09e

Browse files
committed
Allow interaction with dom objects that have been covered by notifications
1 parent 4dce1e6 commit c72b09e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cypress/e2e/ui/Automation/Embedded-Automate/customization.cy.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('Automation > Embedded Automate > Customization', () => {
2828
// creates a dialog
2929
cy.get('[title="Configuration"]').click({force: true});
3030
cy.get('[title="Add a new Dialog"]').click({force: true});
31-
cy.get('[name="name"]').type('Test User');
31+
cy.get('[name="name"]').type('Test User', {force: true});
3232
cy.get('[name="description"').type('Test Description');
3333
cy.get('[name="dialog_type"]').select('Configured System Provision');
3434
cy.get('[class="CodeMirror-lines"]').type(':Buttons:');
@@ -72,8 +72,8 @@ describe('Automation > Embedded Automate > Customization', () => {
7272
// creates a dialog
7373
cy.get('[title="Configuration"]').click({force: true});
7474
cy.get('[title="Add a new Dialog"]').click({force: true});
75-
cy.get('[name="name"]').type('Test User');
76-
cy.get('[name="description"').type('Test Description');
75+
cy.get('[name="name"]').type('Test User', {force: true});
76+
cy.get('[name="description"').type('Test Description', {force: true});
7777
cy.get('[name="dialog_type"]').select('Configured System Provision');
7878
cy.get('[class="CodeMirror-lines"]').type(':Buttons:');
7979
cy.get('[class="btnRight bx--btn bx--btn--primary"]').click({force: true});
@@ -127,7 +127,7 @@ describe('Automation > Embedded Automate > Customization', () => {
127127
// creates a dialog
128128
cy.get('[title="Configuration"]').click({force: true});
129129
cy.get('[title="Add a new Dialog"]').click({force: true});
130-
cy.get('[name="name"]').type('Test User');
130+
cy.get('[name="name"]').type('Test User', {force: true});
131131
cy.get('[name="description"').type('Test Description');
132132
cy.get('[name="dialog_type"]').select('Configured System Provision');
133133
cy.get('[class="CodeMirror-lines"]').type(':Buttons:');

cypress/e2e/ui/Overview/Chargeback/rates.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ describe('Rates', () => {
239239
cy.get('#fixed_rate_1_0').clear().type('1');
240240
cy.get('#per_time_2').select('Monthly');
241241
cy.get('#per_unit_2').select('KB');
242-
cy.get('#finish_2_0').clear();
242+
cy.get('#finish_2_0').clear({force: true});
243243
cy.get('#variable_rate_2_0').clear({force: true }).type('100', { force: true });
244244
cy.get('#buttons_on > .btn-primary').click({ force: true });
245245
}).then(() => {

0 commit comments

Comments
 (0)