25

I want to test that my forms are accessible and that I can tab between my input elements. I found this github issue asking for the feature here: https://github.com/cypress-io/cypress/issues/299

Currently I try to do .type('{tab}') and I get the following error:

CypressError: {tab} isn't a supported character sequence. You'll want to use the command cy.tab(), which is not ready yet, but when it is done that's what you'll use.

Is there a current workaround for the lack of tab support?

kuceb
  • 16,573
  • 7
  • 42
  • 56

1 Answers1

25

The Cypress team is currently working on implementing tab support along with other keyboard keys as part of Native Events

In the meantime I've made a plugin that adds a .tab() command. cypress-plugin-tab:

This enables you to do:

cy.get('input').tab()
// and
cy.get('input').tab({shift: true})

However, the actual tab implementation will not be a separate command, so know if you use this plugin, you'll have to refactor your test code when Native Events lands

As the cypress documentation says:

In the meantime, you can use the experimental cypress-plugin-tab and can thumbs up this issue.

Nate Anderson
  • 18,334
  • 18
  • 100
  • 135
kuceb
  • 16,573
  • 7
  • 42
  • 56