straight-rose-89671
03/08/2023, 2:18 PMcy.get('canvas').click({position: 'topLeft', force: true, x: 50, y: 50})
cy.get('canvas').click({position: 'topLeft', force: true, x: 50, y: 50})
cy.get('canvas').click({position: 'topLeft', force: true, x: 500, y: 500})
After that i click on the canvas:
cy.get('canvas').click()
Everything works local, but on github actions it fails..
So why is it when adding: cy.wait(1000) before the cy.get('canvas').click() it doesn't fail on github actions ?straight-rose-89671
03/08/2023, 3:11 PM