phantomtest.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. def process_query(q):
  12. global driver
  13. googleurl='https://www.google.com/search?q='+urllib.parse.quote(q)
  14. driver.get(googleurl)
  15. time.sleep(3)
  16. elmts=driver.find_elements_by_xpath("//div[@class='g']//div[@class='yuRUbf']//a")
  17. idx=1
  18. ranking=-1
  19. for elmt in elmts:
  20. href=elmt.get_attribute('href')
  21. txt=elmt.text
  22. if len(txt)>10:
  23. # if 'hhh.com.tw' in href:
  24. if 'hhh.com.tw' in href:
  25. # if 'searchome.net' in href:
  26. webdriver.ActionChains(driver).move_to_element(elmt).perform()
  27. webdriver.ActionChains(driver).move_to_element(elmt).click().perform()
  28. break
  29. fw=codecs.open('c:/tmp/gg.html','w','utf-8')
  30. fw.write(driver.page_source)
  31. fw.close()
  32. time.sleep(10)
  33. # driver.save_screenshot("c:/tmp/screen.png")
  34. # os.startfile("c:/tmp/screen.png")
  35. # driver.quit()
  36. #qlist=['上築空間設計','豐聚室內裝修','富億空間設計','浩室設計','京璽國際','IS國際設計','優尼客','摩登雅舍','亞維空間設計','比沙列','富億設計','豐聚設計']
  37. qlist=['IS國際設計']
  38. driver = webdriver.Remote(
  39. # command_executor='http://127.0.0.1:4444/wd/hub',
  40. command_executor='http://192.53.174.202:4444/wd/hub',
  41. desired_capabilities=DesiredCapabilities.CHROME)
  42. driver.set_window_size(1400,1000)
  43. while True:
  44. # q=random.choice(qlist)
  45. q=qlist[0]
  46. print(q)
  47. process_query(q)