Skip to content

Instantly share code, notes, and snippets.

@daniel12fsp
Created February 12, 2019 12:38
Show Gist options
  • Save daniel12fsp/2d7fa07be2b1feef5a980e2d79d3d6c3 to your computer and use it in GitHub Desktop.
Save daniel12fsp/2d7fa07be2b1feef5a980e2d79d3d6c3 to your computer and use it in GitHub Desktop.
Emulate keyboard event
// evt = ArrowLeft + Shift
const evt = new window.KeyboardEvent("keydown", {
key: "ArrowLeft",
shiftKey: true
});
document.dispatchEvent(evt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment