https://github.com/sunjay-dev/whatsapp-bot-with-puppeteer
Automate WhatsApp messages with Puppeteer. Send fun messages programmatically!
https://github.com/sunjay-dev/whatsapp-bot-with-puppeteer
automation message messaging nodejs puppeteer puppeteer-core whatsapp whatsapp-bot
Last synced: 29 days ago
JSON representation
Automate WhatsApp messages with Puppeteer. Send fun messages programmatically!
- Host: GitHub
- URL: https://github.com/sunjay-dev/whatsapp-bot-with-puppeteer
- Owner: sunjay-dev
- License: mit
- Created: 2023-09-29T13:12:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-26T15:26:18.000Z (about 1 month ago)
- Last Synced: 2025-03-26T16:34:20.152Z (about 1 month ago)
- Topics: automation, message, messaging, nodejs, puppeteer, puppeteer-core, whatsapp, whatsapp-bot
- Language: JavaScript
- Homepage:
- Size: 65.4 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WhatsApp Puppeteer Bot
## Overview
This project is a simple WhatsApp automation script using Puppeteer. It leverages Puppeteer's capabilities to send messages on WhatsApp programmatically.
## Features
- Launches a headless browser with Puppeteer.
- Navigates to WhatsApp Web (http://web.whatsapp.com).
- Waits for the user to log in by adding a delay.
- Sends a series of messages to a specified chat, demonstrating message automation.
- Includes a final message to let the recipient know it's a fun project.## How to Use
1. Clone the repository and Install dependencies:
```bash
git clone https://github.com/sunjay-dev/whatsapp-bot-with-puppeteer.git
cd whatsapp-bot-with-puppeteer
npm install
```
2. Run the script:
```bash
node script.js
```### Note on Node Modules
This project includes `package.json`, `package-lock.json`, and `node_modules` in version control. While this practice is not typical due to the potential size of the `node_modules` directory, it has been included to simplify setup for users.
It's recommended to use `npm install` to fetch the dependencies locally and ensure compatibility. If needed, you can choose to exclude `node_modules` from version control by modifying the `.gitignore` file.
### How to find the `executablePath` for Google Chrome, you can follow these steps:
1. **Windows:**
- Right-click on the Google Chrome shortcut on your desktop or in the Start menu.
- Select "Properties" from the context menu.
- In the "Shortcut" tab, you will see a field labeled "Target."
- Copy the text in the "Target" field. It should look something like this:```
"C:\Program Files\Google\Chrome\Application\chrome.exe"
```- Use this path as the `executablePath` in your Puppeteer configuration.
2. **macOS:**
- Open a terminal.
- Run the following command:```bash
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome
```- Copy the path returned by this command and use it as the `executablePath` in your Puppeteer configuration.
3. **Linux:**
- Open a terminal.
- Run the following command:```bash
which google-chrome
```- Copy the path returned by this command and use it as the `executablePath` in your Puppeteer configuration.
## Important Note
This script is for educational and demonstrative purposes only. It's crucial to use automation scripts responsibly and within the terms of service of the platforms you interact with.
## Contributing
Feel free to contribute to the project by opening issues or submitting pull requests.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.