I want a playwright python mouse UI enable script. so can i can see my mouse to be working in visual for my humanize automation. if any one can provide me any method or js script that will work plz come forward and drop here.
def mouseUI(page: Page) -> None:
page.add_init_script("""
(() => {
const dot = document.createElement('div');
dot.id = '__mouse_dot__';
Object.assign(dot.style, {
position: 'fixed',
width: '8px',
height: '8px',
borderRadius: '50%',
backgroundColor: 'red',
zIndex: '2147483647', // Max z-index
pointerEvents: 'none',
top: '0px',
left: '0px',
transform: 'translate(-50%, -50%)',
transition: 'top 0.03s linear, left 0.03s linear'
});
document.body.appendChild(dot);
window.addEventListener('mousemove', e => {
dot.style.left = `${e.clientX}px`;
dot.style.top = `${e.clientY}px`;
});
})();
"""
)
i tried out this method although it did not worked . also i am expecting a mouse UI js or something that can enable a pointer in my chromium playwright browser so that i can visually see my mouse pointer pointing and analyize it [speed , clicking, moving , static]