-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
32 lines (23 loc) · 826 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from selenium import webdriver
import time
from selenium.webdriver.common.keys import Keys
driver = webdriver.Chrome()
driver.get("https://web.whatsapp.com/")
time.sleep(25)
contatos = ['Amor','Whelo']
mensagem = "mensagem de teste"
def buscar_contato(contato):
campo_pesquisa = driver.find_element_by_xpath('//div[contains(@class,"copyable-text selectable-text")]')
time.sleep(3)
campo_pesquisa.click()
campo_pesquisa.send_keys(contato)
campo_pesquisa.send_keys(Keys.ENTER)
def enviar_mensagem(mensagem):
campo_mensagem = driver.find_element_by_xpath('//div[contains(@data-tab,"6")]')
campo_mensagem.click()
time.sleep(3)
campo_mensagem.send_keys(mensagem)
campo_mensagem.send_keys(Keys.ENTER)
for contato in contatos:
buscar_contato(contato)
enviar_mensagem(mensagem)