11
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Python & Selemiun & Chrome で、ダウンロード先を指定してファイルをダウンロード(Windows編)

Last updated at Posted at 2016-12-11

#ソースコード

test.py
#seleniumからwebdriverをインポート
from selenium import webdriver 

#ダウンロード先のフォルダ指定
#使用例:
#download_directory='c:\\Users\\<あなたのホームディレクトリ>\\Downloads'
#注意点:バックスラッシュ(\)は、”\\"とエスケープ文字付きで記載する必要あり
download_directory='<ダウンロードファイルを保存したい場所>'

###############################################################
### ダイアログを表示せずにファイルをダウンロードできます。
### ファイルはdownload_directoryで設定したパスに保存されます。
#
#使用例:
#   driver =init_selenium()
#   target_url='www.WannaGetFileFromHere.com'
#   driver.get(target_url)
###############################################################
def init_selenium():
    ###Chromeへオプションを設定
    chop = webdriver.ChromeOptions() #
    prefs = {"download.default_directory" : download_directory}
    chop.add_experimental_option("prefs",prefs)
    chop.add_argument('--ignore-certificate-errors') #SSLエラー対策
    driver = webdriver.Chrome(chrome_options = chop)
    return driver

#注意点
ダウンロード先のフォルダ指定する際は、バックスラッシュ()は、エスケープ文字とみなされる為、"\"と記述する必要あり。

11
18
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?