hhh_phantom.py 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. if True:
  18. options = webdriver.ChromeOptions()
  19. options.add_argument('--headless')
  20. options.add_argument('--disable-gpu') # Last I checked this was necessary.
  21. options.add_argument('--incognito')
  22. options.add_argument('--no-sandbox')
  23. options.add_argument('--disable-dev-shm-usage')
  24. driver = webdriver.Chrome(
  25. desired_capabilities=options.to_capabilities())
  26. driver.set_window_size(1400,1000)
  27. for i in range(3):
  28. l=random.choice(lst)
  29. # driver.get("https://www.hhh.com.tw/cases/detail/"+l+"/index.php")
  30. driver.get(l)
  31. print(driver.current_url)
  32. # driver.implicitly_wait (2)
  33. time.sleep(3)
  34. driver.quit()