-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfb_posting.py
72 lines (64 loc) · 3.01 KB
/
fb_posting.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
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver import ActionChains
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.firefox.options import Options
from time import sleep
from random import randint
import requests
##Чтение ссылки из текстового файла
f = open('blogurl.txt', 'r')
blogurl = f.readline()
blogurl=blogurl+' '
kolbs = len(blogurl)
print ('Blog url: '+blogurl)
print("\nConnection success...")
## настройки мозила
options = Options()
options.headless = True
#driver = webdriver.Firefox(options=options, executable_path=r"C:/test/geckodriver.exe")
driver = webdriver.Firefox(executable_path=r"C:/test/geckodriver.exe")
driver.maximize_window()
#Вход в соцсеть
driver.get("http://facebook.com")
sleep(5)
driver.find_element_by_id("email").send_keys('+375111111111111')##вместо yourlogin вводин свой логин или номер телефона
sleep(2)
pwd = driver.find_element_by_id("pass")
pwd.send_keys('1234561111111111')# Вводим пароль вместо YoUrPaSSwOrD
pwd.send_keys(Keys.ENTER)
print("регистрацию прошел успешно")
sleep(7)
driver.implicitly_wait(30)
with open("1.txt", "r", encoding="utf-8") as file:
for line in file:
URL = line.strip()
print(URL)
driver.get(URL)
sleep(randint(3,5))
e = driver.find_element_by_xpath("/html/body/div[1]/div/div[1]/div/div[3]/div/div/div[1]/div[1]/div[4]/div/div/div/div/div[1]/div[1]/div/div/div/div[1]/div/div[1]/span") #находим поле для ввода текста
act = ActionChains(driver)
act.move_to_element(e).perform() # перемещаемся к нему, чтобы он стал видимым
act = ActionChains(driver)
act.click(e).perform() # делаем клик
sleep(3)
act = ActionChains(driver)
act.send_keys(blogurl).perform() # вводим нашу ссылку
sleep(3)
# удаляем текст ссылки, оставляя только описание
act = ActionChains(driver)
act.send_keys("https://minus50.by/product/kompyuter-bu-hp-700g1-na-baze-intel-core-i5-4440s-1639392464-?utm_source=fb\n https://minus50.by/product/printer-bu-hp-laserje-2035-1639393042-?utm_source=fb").perform()
sleep(3)
e = driver.find_element_by_xpath("/html/body/div[1]/div/div[1]/div/div[4]/div/div/div[1]/div/div[2]/div/div/div/div/div[1]/form/div/div[1]/div/div/div[1]/div/div[3]/div[2]/div/div/div")
act = ActionChains(driver)
act.move_to_element(e).perform()
sleep(1)
act = ActionChains(driver)
act.click(e).perform()
sleep(3)
#закрываем браузер
driver.close()