Cypress declares that before performing dblclick()
command and other actions it makes the command subject visible by means of scrolling to it. But I have a problem with this. In my test I have a chain of the commands:
cy.get(...).find(...).find(...).dblclick()
And if the element is outside the visible part of the screen, it is not clicked. If I use cy.wait(5000) before the chain of the commands and scroll the screen manually within those 5 sec. the dblclick() succeeds. So the question is do they really make scrolling?