-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathspark.tw-fb-members.py
executable file
·73 lines (62 loc) · 2.79 KB
/
spark.tw-fb-members.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
73
# -*- coding: utf-8 -*-
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
from bs4 import BeautifulSoup
import unittest, time, re, os
class HadoopTWFBMembers(unittest.TestCase):
def setUp(self):
_browser_profile = webdriver.FirefoxProfile()
_browser_profile.set_preference("dom.webnotifications.enabled", False)
self.driver = webdriver.Firefox(firefox_profile=_browser_profile)
self.driver.implicitly_wait(300)
self.base_url = "https://www.facebook.com/"
self.verificationErrors = []
self.accept_next_alert = True
def test_hadoop_tw_fb_members(self):
driver = self.driver
fb_email = os.environ.get("FB_EMAIL")
fb_pass = os.environ.get("FB_PASS")
f1=open('./spark-tw.html', 'w+')
driver.get("https://www.facebook.com/login")
driver.find_element_by_id("email").clear()
driver.find_element_by_id("email").send_keys(fb_email)
driver.find_element_by_id("pass").clear()
driver.find_element_by_id("pass").send_keys(fb_pass)
driver.find_element_by_id("loginbutton").click()
driver.get("https://www.facebook.com/groups/spark.tw/members")
driver.execute_script('window.scrollTo(0, document.body.scrollHeight);')
time.sleep(1)
while BeautifulSoup(driver.page_source,"lxml").select("#groupsMemberSection_recently_joined .uiMorePagerPrimary") != [] :
for i in range(1,10):
driver.execute_script('window.scrollTo(0, document.body.scrollHeight);')
time.sleep(1)
print BeautifulSoup(driver.page_source,"lxml").select("#groupsMemberSection_recently_joined .uiMorePagerPrimary")
soup = BeautifulSoup(driver.page_source,"lxml")
print >>f1, soup.prettify().encode('utf-8')
def is_element_present(self, how, what):
try: self.driver.find_element(by=how, value=what)
except NoSuchElementException as e: return False
return True
def is_alert_present(self):
try: self.driver.switch_to_alert()
except NoAlertPresentException as e: return False
return True
def close_alert_and_get_its_text(self):
try:
alert = self.driver.switch_to_alert()
alert_text = alert.text
if self.accept_next_alert:
alert.accept()
else:
alert.dismiss()
return alert_text
finally: self.accept_next_alert = True
def tearDown(self):
self.driver.quit()
self.assertEqual([], self.verificationErrors)
if __name__ == "__main__":
unittest.main()