我正在尝试抓取这个网站:
http://stats.uis.unesco.org/unesco/TableViewer/tableView.aspx?ReportId=210
使用 Python 和 Selenium(参见下面的代码)。内容是动态生成的,显然不会加载浏览器中不可见的数据。我尝试让浏览器窗口变大,并滚动到页面底部。放大窗口可以在水平方向获得我想要的所有数据,但在垂直方向仍有大量数据需要抓取。滚动似乎根本不起作用。
有没有人对如何做到这一点有任何好主意?
谢谢!
from selenium import webdriver
import time
url = "http://stats.uis.unesco.org/unesco/TableViewer/tableView.aspx?ReportId=210"
driver = webdriver.Firefox()
driver.get(url)
driver.set_window_position(0, 0)
driver.set_window_size(100000, 200000)
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
time.sleep(5) # wait to load
soup = BeautifulSoup(driver.page_source)
table = soup.find("table", {"id":"DataTable"})
### get data
thead = table.find('tbody')
loopRows = thead.findAll('tr')
rows = []
for row in loopRows:
rows.append([val.text.encode('ascii', 'ignore') for val in row.findAll(re.compile('td|th'))])
with open("body.csv", 'wb') as test_file:
file_writer = csv.writer(test_file)
for row in rows:
file_writer.writerow(row)