help with selenium to create instagram accounts

au2mopi

Junior Member
Joined
Aug 12, 2013
Messages
191
Reaction score
44
Anyone here is using selenium to create Instagram accounts ?

I am trying to make my own tool , but Instagram have some kind of protection

I wrote a nice script to avoid getting detected, but there is one thing I couldn't bypass, it seems that IG checks for mouse movements and it can successfully detect real user mouse movements from the bot

Can anyone help me with this ?
 
Can't really help, but since it selenium its probably opening the browser actually like imacros if so, then just install an auto mouse clicker temporarily.
 
that's what I was thinking (only a mouse jiggler is enough), it's not practical because you can't really control what happens ( a lot of things can go wrong)
but I will leave it as a last solution
 
Just point it to a blind spot where there is no links or buttons confifure it to make a click like every 30sec
 
depending how good their detection is they may detect straight line movements and a steady speed.

You can look into bezier curves for realistiic movements (ish)

Or just plot your straight line and then add a variation to the line +/- on the xy along with random speeds. Not really realistic, but straight enough.

If you really want to look into, throw some javascript onto webpages you control and record the mouse paths of a normal user. Store them. Then just user those with some stretching to map your start / finish coords.
 
From the selenium Docs, tried to move mouse seems to work:
Point coordinates = driver.findElement(By.id("ctl00_portalmaster_txtUserName")).getLocation();
Robot robot = new Robot();
robot.mouseMove(coordinates.getX(),coordinates.getY());
 
Hi, mate! You might want to check this similar thread: https://www.blackhatworld.com/seo/my-journey-to-learn-python-selenium-create-powerful-im-bots.971982/
 
Back
Top