cypress-plugin-tab
cypress-plugin-tab copied to clipboard
Please support `event.preventDefault()`
I'm writing Cypress tests for my React Time Input Polyfill at the moment.
https://dan503.github.io/react-time-input-polyfill/
Part of the functionality is that when you press the [Tab] key, it goes to the next segment rather than the next focus-able element.
In order to do that, I need to prevent the default tab functionality from firing using event.preventDefault().
This plugin doesn't seem to support the event.preventDefault() use case though. 😟