Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(driver): type() can target activeElement #4953

Closed
wants to merge 2 commits into from
Closed

fix(driver): type() can target activeElement #4953

wants to merge 2 commits into from

Conversation

eps1lon
Copy link

@eps1lon eps1lon commented Aug 8, 2019

The following fails right now:

cy.get('button').focus();
cy.focused().type('{downarrow}');

force: true does not help. Only adding tabIndex="-1" to the button which shouldn't be required since a button is already focusable and even in tab-order.

This would also follow the current UI-Events spec draft:

The event target of a key event is the currently focused element which is processing the keyboard activity.

-- https://w3c.github.io/uievents/#event-type-keydown

Pre-merge Tasks

  • Have tests been added/updated for the changes in this PR?
  • Has a PR to cypress-documentation been submitted to document any user-facing changes?
  • [ ] Have the type definitions been updated with any user-facing API changes?
  • [ ] Has the cypress.schema.json been updated with any new configuration options?
  • Has the original issue been tagged with a release in ZenHub?

@CLAassistant
Copy link

CLAassistant commented Aug 8, 2019

CLA assistant check
All committers have signed the CLA.

@@ -112,12 +112,13 @@ module.exports = function (Commands, Cypress, cy, state, config) {
const isMonth = $dom.isType(options.$el, 'month')
const isWeek = $dom.isType(options.$el, 'week')
const hasTabIndex = $dom.isSelector(options.$el, '[tabindex]')
const isCurrentlyFocused = $dom.isFocused($dom.getElements(options.$el))
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might make more sense to squash these into a generic isFocusable.

IMO type() shouldn't be chainable and just apply to the focused element but that be a breaking change that requires a lot of manual focus() calls and you could always restrict this manually in your codebase.

@kuceb
Copy link
Contributor

kuceb commented Aug 30, 2019

@eps1lon thanks for this, I've already included it in an upcoming simulated type fixes PR #4870

@kuceb kuceb closed this Aug 30, 2019
@eps1lon eps1lon deleted the fix/type-actionable-focused branch August 30, 2019 16:50
@eps1lon
Copy link
Author

eps1lon commented Aug 30, 2019

@bkucera Great! Thanks for the update and the work on this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

cy.get('button').type() only works if button has tabindex specified
3 participants