I’m just playing with Cypress and I’m trying to select dates in the calender but it does’t work. Maybe there are some Cypress specialists?
Here is my code:
describe(‘Select dates in calender’, () => {
function loginAsAdmin () {
cy.get(’[data-testid=username]’).type(‘admin’)
cy.get(’[data-testid=password]’).type(‘password’)
cy.get(’[data-testid=submit]’).click()
So I start thinking, that it doesnt work as the component may be not draggable… but maybe somebody has an idea, how to solve this?
I’ve tried different examples from the internet, including Cypress Drag and Drop plugin, but it didn’t help.
Hi Beth, thank you for your reply!
I tried out almost all examples from the documentation incl. Drag and drop cypress plugin - no success.
Maybe I just missing something…