6
6

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からSeleniumを使ってFirefoxを操作してみる

Last updated at Posted at 2018-06-10

まず、Seleniumモジュールをイントールします。

pip install -U selenium

次にPythonからFirefoxを操作できるようにgeckodriverをダウンロードします。
geckodriver

ダウンロードしたファイルはパスが通る場所に置きます。
この場所に移動して、Pythonを起動します。

from selenium import webdriver
browser = webdriver.Firefox()
browser.get('https://www.google.co.jp/')
browser.find_element_by_id("lst-ib").send_keys("Python")
browser.find_element_by_name("btnK").click()

これで"Python"と検索できます。
browser.getで、表示するサイトのURLを指定します。
"lst-ib"は、入力テキストボックスのIDです。
"btnK"は、検索ボタンです。

6
6
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
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?