-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhats_App_Bot_Selenium.py
76 lines (54 loc) · 2.06 KB
/
Whats_App_Bot_Selenium.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# -*- coding: utf-8 -*-
"""
Created on Fri Jun 25 20:30:03 2021
@author: xFranco99
"""
import time
import pyautogui
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
#Path WebDriver
webDriverPath = 'path\chromedriver.exe'
#apri chrome web driver
driver = webdriver.Chrome(webDriverPath)
driver.maximize_window()
#apri whatsapp web e premi un tasto dopo aver scannerizzato il QR
driver.get('https://web.whatsapp.com/')
WebDriverWait(driver, 20).until(
EC.presence_of_element_located(
(By.XPATH,
'//*[@id="app"]/div[1]/div/div[2]/div[1]/div/div[3]/label/input'))).click()
input('Premi un tasto per continuare: ')
#semaforo
#(serve per evitare che il programma spammi meme finchè non si cambia frase)
ok = 0
while True:
#dammi l'ultimo messaggio testuale, se c'è un problema ricomincia il loop
try:
txt = driver.find_elements_by_xpath(
"//div[@class='copyable-text']")[-1].text
#evita case sensitive
txt = txt.upper().strip()
except:
pass
#stampa l'ultimo messaggio
print(txt)
#se l'ultimo messaggio è "cringe" manda il catto cringe
if ('CRINGE' in txt):
#se il semaforo è 0 manda il catto e metti il semaforo a 1
if ok == 0:
Reply = WebDriverWait(driver, 20).until(
EC.presence_of_element_located(
(By.XPATH,
'//*[@id="main"]/footer/div[1]/div/span[2]/div/div[2]/div[1]/div/div[2]')))
Reply.click()
#invia con pyautogui l'oggetto copiato in precedenza
pyautogui.hotkey('ctrl', 'v')
time.sleep(1)
pyautogui.press('enter')
ok = 1
else:
#altrimenti rimetti il semaforo a 0
ok = 0