VOOZH about

URL: https://www.geeksforgeeks.org/python/python-sms-bomber-using-selenium/

⇱ Python | SMS Bomber using Selenium - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | SMS Bomber using Selenium

Last Updated : 12 Jul, 2025

Here, we are going to learn a simple SMS bomber trick (for fun and educational purpose). Selenium is a free tool for automated testing across different browsers. In this tutorial, we will learn to send automatically number of spam SMS for given number of frequency and interval.
Requirement: 
You need to install chromedriver and set path. Click here to download.
Below are the steps: 
 

  • First go to flipkart website using this Link.
  • Then click on inspect element by pressing ctrl + shift + i or going in setting of browser and clicking on inspect element manually.
  • Then find the class name of "Enter the number" input field and "Forgot?" link. We will use it later.
👁 FInd class name of 'Ente the number' input field
👁 Find class name of 'Forgot?' link
  • Now, Run the script by putting appropriate class name for each element.
  • Now it will automatically send spam sms to your friend's mobile number.


Note: This tutorial is for educational purpose only, please don't use it for disturbing anyone or any unethical way.
Below is the implementation: 
 

Comment
Article Tags: