I am scraping some websites using Seleneium that tracks my mouse movements and require that I use my mouse to click on around. Is it possible to simulate mouse movements that would be identified by JavaScript as mouse movements, without moving my actual mouse? I.e. so I could have multiple scripts running and be able to use my own mouse for other things?
I have thought about using a virtual machine but that seems like complete overkill especially because I would need multiple running at the same time.
This is different from Human-like mouse movements via Selenium as the point here is more how to simulate mouse movements that javascript will pick up as regular mouse movements, but wont move your actual mouse, so you can have multiple scripts running and/or use your regular mouse for other things.