hhh_phantom.py 1000 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. from selenium import webdriver
  2. import time
  3. import random
  4. import codecs
  5. fpath=__file__
  6. fpath=fpath.replace('hhh_phantom.py','urls.csv')
  7. print(fpath)
  8. lst=[]
  9. fr=codecs.open(fpath,'r','utf-8')
  10. lines=fr.readlines()
  11. for l in lines:
  12. elmts=l.split(',')
  13. lst.append('https://www.hhh.com.tw'+elmts[0])
  14. fr.close()
  15. #lst=['13781','3649','2116']
  16. for i in range(9999):
  17. options = webdriver.ChromeOptions()
  18. options.add_argument('--headless')
  19. options.add_argument('--disable-gpu') # Last I checked this was necessary.
  20. options.add_argument('--no-sandbox')
  21. options.add_argument('--disable-dev-shm-usage')
  22. driver = webdriver.Chrome(
  23. desired_capabilities=options.to_capabilities())
  24. driver.set_window_size(1400,1000)
  25. l=random.choice(lst)
  26. # driver.get("https://www.hhh.com.tw/cases/detail/"+l+"/index.php")
  27. driver.get(l)
  28. print(driver.current_url)
  29. driver.implicitly_wait (6)
  30. time.sleep(6)
  31. driver.save_screenshot('c:/tmp/test.png')
  32. driver.quit()