I am testing my application where I have very long side menu and I have a code like that:
cy.get('tab').click({force: true})
The automatic scroll happens between get and click and then selected tab is not visible since the top menu has possition fixed. I found many solutions but none of them worked. So far I tried .click({force: true}) and .click(scrollBehaviour: false}) also .scrollIntoView() between get and click.
Is there any other way to solve this issue?