A Python script that simulates multiple concurrent first-time visits to a website using Selenium WebDriver. The script clears browser cache and cookies before each visit to simulate authentic first-time visitors.
- Configurable number of concurrent website visits
- Automatic cache and cookie clearing before each visit
- Human-like behavior simulation with random delays
- Progress tracking for each visit
- Error handling for failed visits
Before running this script, you need to have the following installed:
- Python 3.x
- Chrome browser
- ChromeDriver (matching your Chrome version)
- Clone this repository:
git clone https://github.com/yourusername/concurrent-website-visitor.git
cd concurrent-website-visitor
- Create and activate a virtual environment:
# Install required packages if not already installed
sudo apt install python3-full python3-venv
# Create virtual environment
python3 -m venv venv
# Activate virtual environment
source venv/bin/activate
- Install required packages:
pip install selenium
- Make sure your virtual environment is activated:
source venv/bin/activate
- Run the script:
python website_visitor.py URL NUMBER_OF_VISITS --max-concurrent NUMBER_OF_CONCURRENT_VISITS
Example:
python website_visitor.py https://example.com 20 --max-concurrent 10
This will create 20 visits to example.com, with 10 concurrent visits running at a time.
URL
: The website URL you want to visitNUMBER_OF_VISITS
: Total number of visits to make to the website--max-concurrent
: Maximum number of concurrent visits (default: 5)
- The script uses threading to manage concurrent visits
- Each visit opens in a new browser window
- Browser windows are automatically closed after each visit
- The script includes random delays to simulate human behavior
- Opening too many concurrent sessions might impact system performance
- Some websites might detect and block multiple simultaneous connections
If you encounter any errors:
- Make sure Chrome and ChromeDriver are installed and up to date
- Verify that the ChromeDriver version matches your Chrome browser version
- Check if the website allows automated access
- Ensure you have enough system resources for the number of concurrent visits
Feel free to fork this repository and submit pull requests with improvements.
This project is licensed under the MIT License - see the LICENSE file for details.