I'm working for the first time with Cypress to automate some tests, and I'm pleased with that, but now I'm stuck on something simple.
We are using kendo to render a dropdown (in the HTML it is a standard select, with kendo-drop-down-list attribute).
In the rendered page, I can see the select item with the possible values, but it is set as not visible, so cypress cannot click and select on this.
It looks like that every time I select an option, the DOM is dynamically modified to show me the dropdown as a set of span elements, that are created on the fly.
This is what I'm doing in Cypress (where sDir is the id of the select element and firstValue is the first option of the dropdown list)
cy.get('#sDir').select('firstValue')
Which is the right way to interact with a kendo drop down with Cypress?
Thanks
full html
of the drop down please. – soccerway