Ultimate Guide to Sneaker Bot Creation 👟 . Very rare and valuable informations which is presented in this free guide, so please consider leaving a star to encourage me for future updates and open-source projects/tutorials.
There are two types of sneaker bot and web bot in general:
- Browser-like Bot which works through modules and libraries that offers the control of headless browser (Puppeteer, Selenium...)
- Request-Based Bot which sent requests directly to the server. For these types of bot modules such as Axios are often used.
When getting into the creation of Sneaker Bot, the most important skill you need to know is how to use the Chrome devTools.
For Browser-like bot, you will need to use the elements panel in order to get the right selector or XPath for the HTML Element that you want to target.
Meanwhile, for request-based bot you will need to use the network panel, in order to analyse the requests that get sent from the website to the server (when adding a product to the cart for example).