I'm having trouble focusing on an element in the search grid. I've targeted it now, but I can't write anything in it. It doesn't make a mistake, it just doesn't write the characters of "St". Anyone have an idea what I'm doing wrong? Could the problem be that the element is not visible?
Code in Cypress:
cy.get('div[id="grid"]').find('.dx-datagrid-filter-row')
.find(".dx-editor-with-menu").eq(2)cy.focused().click({ force: true }).type('St');
Evaluation:
You can try something like:
cy.get('div[id="grid"]')
.find('.dx-editor-with-menu')
.eq(2)
.focus()
.click({force: true})
.type('St', {force: true})