-
Notifications
You must be signed in to change notification settings - Fork 0
/
funkysouls_send.py
30 lines (27 loc) · 1.37 KB
/
funkysouls_send.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
import time
from selenium.webdriver.common.by import By
from selenium.common.exceptions import ElementNotInteractableException
import misc
from credentials import funkysouls
# Заполняем форму авторизации
driver = misc.web_surfing(tor=True)
driver.get(f"{funkysouls['url']}/login")
driver.find_element(By.ID, 'username').send_keys(funkysouls['login'])
driver.find_element(By.ID, 'password').send_keys(funkysouls['password'])
driver.find_element(By.CSS_SELECTOR, '.controls > button:nth-child(1)').click()
while True:
user_id = misc.select_one_user_to_send('funkysouls')
driver.get(f"{funkysouls['url']}/u/{user_id}/pm")
# Заполнение формы отправки сообщения
try:
driver.find_element(By.NAME, 'msg_title').send_keys('Частные торрент-трекеры')
driver.find_element(By.ID, 'answer_form').send_keys(misc.message_ru)
driver.find_element(By.ID, 'add_tracking').click()
driver.find_element(By.NAME, 'submit').click()
misc.successfully_sent('funkysouls', user_id)
misc.count_is_null('funkysouls')
# Ожидание
time.sleep(10)
# Закрытие попапа о новом сообщении, который прерывает отправку
except ElementNotInteractableException:
driver.find_element(By.CLASS_NAME, 'close').click()