phantomtest.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. from selenium import webdriver
  2. from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
  3. import time
  4. import os
  5. import urllib.parse
  6. from selenium.webdriver.support.ui import WebDriverWait
  7. from selenium.webdriver.common.by import By
  8. from selenium.webdriver.support import expected_conditions as EC
  9. import codecs
  10. import random
  11. from bs4 import BeautifulSoup
  12. import requests
  13. import time
  14. headers = {
  15. "Authorization": "Bearer " + "t35vhZtWNgvDNWHc3DJh0OKll3mcB9GvC8K2EAkBug2",
  16. "Content-Type": "application/x-www-form-urlencoded"
  17. }
  18. def send_msg(kw):
  19. params = {"message": "處理關鍵字: "+kw}
  20. r = requests.post("https://notify-api.line.me/api/notify",headers=headers, params=params)
  21. def process_query(q):
  22. global driver
  23. googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
  24. driver.get(googleurl)
  25. time.sleep(3)
  26. elmts=driver.find_elements_by_xpath("//div[@class='g']//div[@class='yuRUbf']//a")
  27. idx=1
  28. ranking=-1
  29. for elmt in elmts:
  30. href=elmt.get_attribute('href')
  31. txt=elmt.text
  32. if len(txt)>10:
  33. # if 'hhh.com.tw' in href:
  34. if 'hhh.com.tw' in href:
  35. # if 'searchome.net' in href:
  36. webdriver.ActionChains(driver).move_to_element(elmt).perform()
  37. webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
  38. break
  39. fw=codecs.open('c:/tmp/gg.html','w','utf-8')
  40. fw.write(driver.page_source)
  41. fw.close()
  42. # driver.save_screenshot("c:/tmp/screen.png")
  43. # os.startfile("c:/tmp/screen.png")
  44. # driver.quit()
  45. #qlist=['上築空間設計','豐聚室內裝修','富億空間設計','浩室設計','京璽國際','IS國際設計','優尼客','摩登雅舍','亞維空間設計','比沙列','富億設計','豐聚設計']
  46. #qlist=['IS國際設計']
  47. qlist=['富億空間','幸福空間節目 富億','幸福空間設計師 富億','幸福空間 富億','幸福空間 fe設計','老屋 富億','老屋翻新 富億','天井設計案例 富億','IS國際設計','豐聚設計','浩室設計','優尼客','摩登雅舍','亞維空間設計','比沙列','京璽國際','上築空間設計']
  48. driver = webdriver.Remote(
  49. # command_executor='http://127.0.0.1:4444/wd/hub',
  50. command_executor='http://192.53.174.202:4444/wd/hub',
  51. desired_capabilities=DesiredCapabilities.CHROME)
  52. driver.set_window_size(1400,1000)
  53. while True:
  54. q=random.choice(qlist)
  55. send_msg(q)
  56. # q=qlist[0]
  57. print(q)
  58. process_query(q)
  59. intsleep=random.randint(5,10)
  60. time.sleep(intsleep)