chore: change input selector

pull/5911/head
Kevin Grossmann 2022-04-25 14:07:55 +02:00 committed by k3yi0
parent 639a30b31a
commit 69f2110d49
1 changed files with 3 additions and 3 deletions

View File

@ -63,9 +63,9 @@ describe('Use Dashboards', () => {
cy.getByTestID('sidebar').should('not.exist')
cy.getByTestID('import-dashboard--button').should('not.exist')
cy.getByTestID('create-dashboard-button').should('not.exist')
cy.getByTestID('dashboard-filter--input').type('Empty')
cy.get('.form-control').type('Empty')
cy.getByTestID('dashboard-panel').should('have.text', `Looks like you dont have any dashboards`)
cy.getByTestID('dashboard-filter--input').clear().type('Dashboard')
cy.get('.form-control').clear().type('Dashboard')
cy.getByTestID('Unnamed Dashboard').click()
cy.get('.dashboard-empty--menu').should('not.exist')
cy.getByTestID('add-cell').should('not.exist')
@ -76,4 +76,4 @@ describe('Use Dashboards', () => {
cy.getByTestID('add-annotation-filter--button').should('not.exist')
})
})
})
})