-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathfbposter.py
59 lines (49 loc) · 1.7 KB
/
fbposter.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
from time import sleep
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
def main():
#your account user and password, path to image, links to groups and message
usr = ""
pwd = ""
message = ""
image_path = ""
group_links = [ ]
#delete cache
profile = webdriver.FirefoxProfile()
profile.set_preference("browser.cache.disk.enable", False)
profile.set_preference("browser.cache.memory.enable", False)
profile.set_preference("browser.cache.offline.enable", False)
profile.set_preference("network.http.use-cache", False)
# Path to geckodriver executable
driver = webdriver.Firefox(executable_path=r'D:\Desktop\selenium\geckodriver')
driver.implicitly_wait(15)
#Login to facebook
driver.get("http://www.facebook.com")
elem = driver.find_element_by_id("email")
elem.send_keys(usr)
elem = driver.find_element_by_id("pass")
elem.send_keys(pwd)
c = driver.find_element_by_id('loginbutton')
c.click()
for group in group_links:
# Go to the Facebook Group and
driver.get(group)
sleep(5)
post_box=driver.find_element_by_xpath("//*[@name='xhpc_message_text']")
post_box.send_keys(message)
sleep(5)
if image_path != "" :
addMedia = driver.find_element_by_xpath("//*[@data-testid='media-attachment-selector']")
addMedia.click()
# Provide picture file path
driver.find_element_by_xpath("//*[@name='composer_photo']").send_keys(image_path)
# Get the 'Post' button and click on it
Post_button = driver.find_element_by_xpath("//*[@data-testid='react-composer-post-button']")
sleep(5)
Post_button.click()
sleep(5)
driver.close()
if __name__ == '__main__':
main()