Skip to content

Instantly share code, notes, and snippets.

@brian-mann
Created June 7, 2016 15:17
Show Gist options
  • Select an option

  • Save brian-mann/0c79a2b98c17d2dfb7f0461eb2b59ad5 to your computer and use it in GitHub Desktop.

Select an option

Save brian-mann/0c79a2b98c17d2dfb7f0461eb2b59ad5 to your computer and use it in GitHub Desktop.
arrowdown custom command
Cypress.addChildCommand("arrowdown", function($el){
var evt = new Event("keydown", {
bubbles: true,
cancelable: true,
altKey: false,
ctrlKey: false,
metaKey: false,
shiftKey: false,
location: 0,
charCode: 0,
detail: 0,
keyCode: 40,
which: 40
})
$el.get(0).dispatchEvent(evt)
return $el
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment