c
Hello everyone, please help me .. When I click on a button, nothing happens until I press the button manually Although the Cybers see this button and select it and click, but nothing happens
b
have you tried .click({“force”:true})
c
yes ,still not working
b
maybe theres a different selector to the same element that will work
sometimes i change the selector to the parent element and it works
examppe the button is an svg inside a div
selcting the svg and using .click will not work
but selecting the div will
i encountered a similar problem
c
this is the element

https://cdn.discordapp.com/attachments/1110156648804270141/1110186220010614794/2023-05-22_154209.png

g
maybe try the cypress-real-events plugin
m
if you do a cy.get('your element') , and open de browser console, does the .get 'yield' the to-be-clicked button?