-
-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathsimple-monitor.py
55 lines (39 loc) · 1.44 KB
/
simple-monitor.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
#! /usr/bin/python3
'''
Author- RIZWAN AHMAD
download https://github.com/mozilla/geckodriver/releases
set path paste binary file /usr/local/bin
install requirements: pip3 install selenium
'''
from selenium import webdriver
import os
import time
from time import sleep
driver = webdriver.Firefox()
driver.get("http://web.whatsapp.com")
name=input("Please Enter Name for search online status: ")
while True:
try:
chat=driver.find_element_by_xpath("/html/body/div[1]/div/div/div[3]/div/header/div[2]/div/span/div[2]/div")
chat.click()
time.sleep(2)
search=driver.find_element_by_xpath("/html/body/div[1]/div/div/div[2]/div[1]/span/div/span/div/div[1]/div/label/input")
search.click()
time.sleep(2)
search.send_keys(name)
time.sleep(2)
open=driver.find_element_by_xpath("/html/body/div[1]/div/div/div[2]/div[1]/span/div/span/div/div[2]/div[1]/div/div/div[2]/div/div")
open.click()
time.sleep(2)
while True:
try:
status = driver.find_element_by_class_name("_315-i").text
name = driver.find_element_by_class_name("_19vo_").text
print("{0} is {1}".format(name,status))
time.sleep(30)
except:
name = driver.find_element_by_class_name("_19vo_").text
print("{0} is {1}".format(name,"offline"))
sleep(30)
except:
pass