Created
June 12, 2017 22:05
-
-
Save FremyCompany/a90ad828d720f2d0eab33075ecafb72f to your computer and use it in GitHub Desktop.
Debug WebDriver-generated mouse events
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onclick = function(e) { | |
var d = document.createElement("div"); | |
d.style = `position: fixed; top: ${e.clientY}px; left: ${e.clientX}px; outline: 3px solid ${e.ctrlKey ? 'green' : 'red'};`; | |
document.body.appendChild(d); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment