편집 기록

편집 기록
  • 프로필 알 수 없는 사용자님의 편집
    날짜2017.04.04

    BeautifulSoup 와 selenium 으로 웹크롤링 할때 데이터를 못 읽어오는건 어떻게 해결할수있을까요?


    from bs4 import BeautifulSoup
    from selenium import webdriver
    
    driver = webdriver.Firefox()
    driver.get("http://ntry.com/#/stats/ladder/date.php?date=2014-01-04")
    
    html = driver.page_source
    soup = BeautifulSoup(html, "html.parser")
    
    prodList = soup.find_all("td", {"class": "round_cell"})
    print(prodList)
    

    실행시 결과값이 [ ] 나오내요.

  • 프로필 정토드님의 편집
    날짜2016.08.02

    BeautifulSoup 와 selenium 으로 웹크롤링 할때 데이터를 못 읽어오는건 어떻게 해결할수있을까요?


    from bs4 import BeautifulSoup
    from selenium import webdriver
    
    driver = webdriver.Firefox()
    driver.get("http://ntry.com/#/stats/ladder/date.php?date=2014-01-04")
    
    html = driver.page_source
    soup = BeautifulSoup(html, "html.parser")
    
    prodList = soup.find_all("td", {"class": "round_cell"})
    print(prodList)
    

    실행시 결과값이 [ ] 나오내요.

  • 프로필 알 수 없는 사용자님의 편집
    날짜2016.07.31

    BeautifulSoup 와 selenium 으로 웹크롤링 할때 데이터를 못 읽어오는건 어떻게 해결할수있을까요?


    from bs4 import BeautifulSoup from selenium import webdriver

    driver = webdriver.Firefox() driver.get("http://ntry.com/#/stats/ladder/date.php?date=2014-01-04")

    html = driver.page_source soup = BeautifulSoup(html, "html.parser")

    prodList = soup.find_all("td", {"class": "round_cell"}) print(prodList)

    실행시 결과값이 [ ] 나오내요. 해결좀부탁드립니다~