I am using Cypress to test a web application. I am keep getting this visibility error (This element ''is not visible because its parent...) when trying to click links/buttons using the click() function.
Cypress' suggestion to 'Fix this problem, or use {force: true} to disable error checking' does help.
Now, I've been googling about how to make {force:true} the default behavior for the click() function so I do not have to write it in every use of the click() function but couldn't find anything so far - click({force:true}).
It that even possible? Any thoughts out there?
BR
.click()
: docs.cypress.io/guides/core-concepts/… – Graphophone