This repository does not require Selenium or any other browser to be interface with WhatsApp Web, it does so directly using a WebSocket.
In our tests this repository depends on node 16 or higher.
Node: v16.x
To run the example script, download or clone the repo and then type the following in terminal:
cd multidevice
npm install
npm start
to debug the code, create a "launch.json" file inside the ".vscode" folder
{
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "Run debugger",
"request": "launch",
"type": "node-terminal"
}
]
}