hhh_phantom.py 629 B

12345678910111213141516171819202122
  1. from selenium import webdriver
  2. import time
  3. import random
  4. lst=['13781','3649','2116']
  5. for i in range(9999):
  6. options = webdriver.ChromeOptions()
  7. options.add_argument('--headless')
  8. options.add_argument('--disable-gpu') # Last I checked this was necessary.
  9. driver = webdriver.Chrome(
  10. desired_capabilities=options.to_capabilities())
  11. driver.set_window_size(1400,1000)
  12. l=random.choice(lst)
  13. driver.get("https://www.hhh.com.tw/cases/detail/"+l+"/index.php")
  14. print(driver.current_url)
  15. driver.implicitly_wait (6)
  16. time.sleep(6)
  17. driver.save_screenshot('c:/tmp/test.png')
  18. driver.quit()