monitor_chrome.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import sys
  2. from selenium import webdriver
  3. import urllib
  4. from selenium.webdriver.chrome.service import Service
  5. from selenium.webdriver.common.by import By
  6. import os
  7. import time
  8. def process_one():
  9. global driver
  10. googleurl = 'https://www.google.com/search?q={}&num={}&hl={}'.format(urllib.parse.quote('風起'), 100,'zh-TW')
  11. print(googleurl)
  12. driver.get(googleurl)
  13. while True:
  14. try:
  15. elmts = driver.find_elements(By.XPATH, "//div[@class='yuRUbf']/a")
  16. print('尋找')
  17. break
  18. except:
  19. pass
  20. print('搜尋結果數量',len(elmts))
  21. n = 0
  22. if len(elmts) == 0:
  23. n+=1
  24. print('異常次數',n)
  25. os.system('python3 reboot.py')
  26. print('正常')
  27. def run_once(pport):
  28. global driver
  29. s = Service('/root/driver/chromedriver')
  30. user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.125"
  31. options = webdriver.ChromeOptions()
  32. options.add_argument('--headless')
  33. options.add_argument('--remote-debugging-port=9222')
  34. options.add_experimental_option("debuggerAddress", f"127.0.0.1:{pport}")
  35. options.add_argument("--user-agent=" + user_agent)
  36. options.add_argument("--incognito")
  37. driver = webdriver.Chrome(options=options, service=s)
  38. driver.delete_all_cookies()
  39. driver.set_window_size(1400, 1000)
  40. process_one()
  41. time.sleep(3)
  42. driver.quit()
  43. try:
  44. os.system('docker container restart tiny10')
  45. time.sleep(1)
  46. run_once(9929)
  47. print('docker開啟完成')
  48. except:
  49. os.system('docker container restart tiny9')
  50. time.sleep(15)