Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed cypress tests. #1027

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cypress/integration/bucket_level_monitor_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,9 @@ describe('Bucket-Level Monitors', () => {
// Click Edit button
cy.contains('Edit').click({ force: true });

// Wait for page to load
cy.contains('Select clusters').click({ force: true });

// Click on the Index field and type in multiple index names to replicate the bug
cy.get('#index')
.click({ force: true })
Expand Down
6 changes: 6 additions & 0 deletions cypress/integration/query_level_monitor_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,9 @@ describe('Query-Level Monitors', () => {
// Click Edit button
cy.contains('Edit', { timeout: 25000 }).click({ force: true });

// Wait for page to load
cy.contains('Select clusters').click({ force: true });

// Click on the Index field and type in multiple index names to replicate the bug
cy.get('#index')
.should('be.visible')
Expand Down Expand Up @@ -319,6 +322,9 @@ describe('Query-Level Monitors', () => {
// Select visual editor
cy.get('[data-test-subj="visualEditorRadioCard"]').click();

// Wait for page to load
cy.contains('Select clusters').click({ force: true });

// Wait for input to load and then type in the index name
cy.get('#index').type(`{backspace}${INDEX.SAMPLE_DATA_ECOMMERCE}{enter}`, { force: true });

Expand Down
Loading