4
1

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.

Seleniumが動かなかった

Posted at

#Windows10でSeleniumインストールしても動かなかった。

geckodriverが無いと怒られた。

##環境

  • windows10
  • python3.5.2(anaconda経由でインストール)
  • selenium 3
  • firefox 51.0.1

##対処法

StackOverflowに掲載されていた。

###①geckodriverのダウンロード
ここからダウンロード

解凍してGeckodriverを適当な場所にコピペする。

###②PATHを通す。
geckodriverのあるディレクトリへPATHを通す。

通し方はこちらを参考にしてください。
上記URLはwindows7ですが10でも設定方法は変わらない。

通すPATHはディレクトリであることに注意する

###③PCを再起動する

これでコマンドプロンプトで


python
from selenium import webdriver
browser = webdriver.Firefox()

と打ってみてFirefoxが開けばOKです。

4
1
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
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?