Created
January 29, 2022 21:26
Bot para petar chats de Whatsapp a mensajes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
from webdriver_manager.firefox import GeckoDriverManager | |
from time import sleep | |
chat = 'NOMBRE DEL CHAT' | |
times = NÚMERO DE VECES | |
message = 'MENSAJE' | |
driver = webdriver.Firefox(executable_path=GeckoDriverManager().install()) | |
# Go to Whatsapp web | |
driver.get('https://web.whatsapp.com/') | |
sleep(10) # Wait to login | |
# Find chat | |
input_search_chat = driver.find_element_by_xpath('/html/body/div[1]/div[1]/div[1]/div[3]/div/div[1]/div/label/div/div[2]') | |
input_search_chat.send_keys(chat) | |
# Click on chat | |
button_chat = driver.find_element_by_xpath('/html/body/div[1]/div[1]/div[1]/div[3]/div/div[2]/div[1]/div/div/div[10]') | |
button_chat.click() | |
sleep(10) | |
# Write & Send message | |
for _ in range(times): | |
input_text = driver.find_element_by_xpath('/html/body/div[1]/div[1]/div[1]/div[4]/div[1]/footer/div[1]/div/span[2]/div/div[2]/div[1]/div/div[2]') | |
input_text.send_keys(message) | |
button_send = driver.find_element_by_xpath('/html/body/div[1]/div[1]/div[1]/div[4]/div[1]/footer/div[1]/div/span[2]/div/div[2]/div[2]/button') | |
button_send.click() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A