Automate your form submissions effortlessly! This bot fills out forms for you, saves time, and ensures accuracy—perfect for surveys, registrations, and more. Try it now and let the bot do the work!
This bot automates form submissions, making it perfect for repetitive tasks like filling out surveys, registrations, or feedback forms. It uses Selenium to interact with web forms, dynamically detects fields, and fills them with random or predefined data. Whether you're testing a form or need to submit multiple entries, this bot saves time and ensures accuracy.
- Dynamic Form Detection: Automatically detects and fills text fields, dropdowns, radio buttons, checkboxes, and more.
- Customizable Data: Randomly generates names, ages, phone types, brands, and other data, or allows you to customize the inputs.
- Headless Mode: Runs in the background without opening a browser window.
- Error Handling: Skips problematic fields and continues filling the form.
- Multiple Submissions: Submits the form multiple times as specified by the user.
- Form Reset: Clears cookies and refreshes the page after each submission to ensure a clean slate.
Before running the bot, ensure you done this
-
Install Python 3.x
- On Windows/macOS/Linux, download Python from python.org.
- During installation, ensure you check the box to Add Python to PATH.
-
Verify Installation
- Open a terminal or command prompt and run:
python --version
- You should see something like
Python 3.x.x
.
- Open a terminal or command prompt and run:
-
Create a Virtual Environment
- Navigate to your project folder and run:
python -m venv venv
- Navigate to your project folder and run:
-
Activate the Virtual Environment
- On Windows:
venv\Scripts\activate
- On macOS/Linux:
source venv/bin/activate
- On Windows:
-
Install Selenium
- Run the following command:
pip install selenium pip install selenium webdriver-manager pip install webdriver-manager
- Run the following command:
-
Download Geckodriver
- Download Geckodriver for your operating system:
- Windows: geckodriver.exe
- macOS: geckodriver
- Linux: geckodriver
- Extract the downloaded file and note the path to the
geckodriver
executable.
- Download Geckodriver for your operating system:
-
Install Firefox
- On Windows/macOS/Linux, download and install Firefox from mozilla.org.
- Clone the Repository
git clone https://github.com/Adam-ZS/Microsoft-Forms-Fill-Bot.git cd Microsoft-Forms-Fill-Bot
Update the Script
Open the script (Form.py) in a text editor.
Update the geckodriver_path variable with the path to your Geckodriver executable.
geckodriver_path = "/path/to/geckodriver" # Update this path to yours
To find yours
sudo find / -name "geckodriver"