【Python】Seleniumでページの下部へスクロールさせる方法

【Python】Seleniumでページの下部へスクロールさせる方法です。

PythonのSeleniumをインストールされていない方は【Python】Seleniumのインストール方法を御覧ください。

ソースコードは以下のとおりです。

# 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()

コメントする

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

This site uses Akismet to reduce spam. Learn how your comment data is processed.