Skip to content

Instantly share code, notes, and snippets.

@AirStair
Created April 15, 2020 17:12
Show Gist options
  • Save AirStair/7bd74b050e24984ff331dabd812a83c9 to your computer and use it in GitHub Desktop.
Save AirStair/7bd74b050e24984ff331dabd812a83c9 to your computer and use it in GitHub Desktop.
nightmare js keyboard codes
browserWindow.webContents.sendInputEvent({
type: "keyDown",
keyCode: '\u0008'
});
browserWindow.webContents.sendInputEvent({
type: "keyUp",
keyCode: '\u0008'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment