【Python】Seleniumでページの下部へスクロールさせる方法です。
PythonのSeleniumをインストールされていない方は【Python】Seleniumのインストール方法を御覧ください。
ソースコードは以下のとおりです。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
from selenium import webdriver | |
# FireFox起動 | |
driver = webdriver.Firefox() | |
# yahoo表示 | |
driver.get('http://www.yahoo.co.jp/') | |
# javascriptを実行してページの最下部へ移動 | |
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);") | |
# FireFox終了 | |
driver.close() |