-
Notifications
You must be signed in to change notification settings - Fork 0
/
Renovar_livros.py
65 lines (42 loc) · 1.79 KB
/
Renovar_livros.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
#!/usr/bin/env python
# coding: utf-8
# In[3]:
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.common.by import By
from twilio.rest import Client
import time
servico = Service(ChromeDriverManager().install())
navegador = webdriver.Chrome(service=servico)
login = ['seu_login','seu_login']
senha = ['sua_senha','sua_senha']
for i in range(2):
navegador.get(r'Site da universidade onde vai renovar os livros')
navegador.find_element(By.ID,'id_login').send_keys(login[i])
navegador.find_element(By.ID,'id_senhaLogin').send_keys(senha[i])
navegador.find_element(By.ID,'button').click()
#vamos descobrir a quantidade de livro que temos
renovar = len(navegador.find_elements(By.CLASS_NAME,'btn_renovar'))
# vamos renovar a quantidade de livro que temos
for i in range(renovar):
navegador.find_element(By.XPATH,f'//*[@id="botao_renovar{i+1}"]/center/input').click()
time.sleep(2)
navegador.find_element(By.ID,'btn_gravar4').click()
# vamos pegar os livros que temos
livros = []
for i in range(renovar):
livro = navegador.find_element(By.XPATH,f'//*[@id="Accordion1"]/div[1]/div[2]/table/tbody/tr[{i+2}]/td[2]/a').text
livros.append(livro)
#vamos pegar a data da próxima renovação
data = navegador.find_element(By.XPATH,f'//*[@id="Accordion1"]/div[1]/div[2]/table/tbody/tr[2]/td[3]').text
account_sid = 'sid'
token = 'token'
client = Client(account_sid, token)
message = client.messages.create(
to="seu número",
from_="número do seu token",
body=f"Seus livros {livros} foram renovados até {data}")
print(message.sid)
navegador.close()
# In[ ]: