Last active
December 24, 2024 20:57
-
-
Save aslushnikov/94108a4094532c7752135c42e12a00eb to your computer and use it in GitHub Desktop.
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
// This injects a box into the page that moves with the mouse; | |
// Useful for debugging | |
async function installMouseHelper(page) { | |
await page.evaluateOnNewDocument(() => { | |
// Install mouse helper only for top-level frame. | |
if (window !== window.parent) | |
return; | |
window.addEventListener('DOMContentLoaded', () => { | |
const box = document.createElement('puppeteer-mouse-pointer'); | |
const styleElement = document.createElement('style'); | |
styleElement.innerHTML = ` | |
puppeteer-mouse-pointer { | |
pointer-events: none; | |
position: absolute; | |
top: 0; | |
z-index: 10000; | |
left: 0; | |
width: 20px; | |
height: 20px; | |
background: rgba(0,0,0,.4); | |
border: 1px solid white; | |
border-radius: 10px; | |
margin: -10px 0 0 -10px; | |
padding: 0; | |
transition: background .2s, border-radius .2s, border-color .2s; | |
} | |
puppeteer-mouse-pointer.button-1 { | |
transition: none; | |
background: rgba(0,0,0,0.9); | |
} | |
puppeteer-mouse-pointer.button-2 { | |
transition: none; | |
border-color: rgba(0,0,255,0.9); | |
} | |
puppeteer-mouse-pointer.button-3 { | |
transition: none; | |
border-radius: 4px; | |
} | |
puppeteer-mouse-pointer.button-4 { | |
transition: none; | |
border-color: rgba(255,0,0,0.9); | |
} | |
puppeteer-mouse-pointer.button-5 { | |
transition: none; | |
border-color: rgba(0,255,0,0.9); | |
} | |
`; | |
document.head.appendChild(styleElement); | |
document.body.appendChild(box); | |
document.addEventListener('mousemove', event => { | |
box.style.left = event.pageX + 'px'; | |
box.style.top = event.pageY + 'px'; | |
updateButtons(event.buttons); | |
}, true); | |
document.addEventListener('mousedown', event => { | |
updateButtons(event.buttons); | |
box.classList.add('button-' + event.which); | |
}, true); | |
document.addEventListener('mouseup', event => { | |
updateButtons(event.buttons); | |
box.classList.remove('button-' + event.which); | |
}, true); | |
function updateButtons(buttons) { | |
for (let i = 0; i < 5; i++) | |
box.classList.toggle('button-' + i, buttons & (1 << i)); | |
} | |
}, false); | |
}); | |
}; | |
module.exports = {installMouseHelper}; | |
@aslushnikov You want to put the mouse helper into an npm package? Otherwise I can do it.
you done that ?
@fulcanelly No but looks like some other people did.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@aslushnikov You want to put the mouse helper into an npm package? Otherwise I can do it.