I tested some jquery code in my browser with cucumber and capybara, and in the text box, when the change event occurs, it calls a certain function, when I manually do this action, everything works, but when I start the cucumber, I fill the text box with a new value, but the function is not executed.
Meanwhile, there is another text field associated with the jQuery keyup event, which launches another function and works manually in the browser or cucumber works
what could be the reason that the change event callback function does not start when the cucumber starts?
source
share