2017-10-02 python 爬蟲-等待完成 120 0 在爬蝦皮資料時, 常常到分頁的資料有少, 後來用「等待完成」的方式來取得sleep就正常了。 try: element = WebDriverWait(driver, 10).until( EC.presence_of_element_located((By.ID, "search-result")) ) finally: driver.quit() 自我LV~ 回首頁