Write this command on Terminal and Press Enter:
pip install pyautogui
Python Code
import pyautogui
import time
time.sleep(3)
count = 0
while(count <= 100):
pyautogui.typewrite('hi')
pyautogui.press('enter')
count += 1
Here Messages send on those whatsapp group where your mouse cursor is available.
Output
Top comments (0)