0
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?

スクレイピングした時に表示を待ってから値を取得する

Posted at

はじめに

こんにちは、エンジニアのkeitaMaxです。

今日はPythonとSeleniumでスクレイピングをしたいた時の話に、画面が表示されるまで待ちたい時の話です。

内容

画面が表示される前に文字列などを探してしまうとエラーになってしまいます。

その時は以下のようにWebDriverWaitを入れるといいです。

wait = WebDriverWait(driver, 10)
element = wait.until(EC.presence_of_element_located((By.XPATH, "//div[@class='button']")))
element.click()

こうすると表示されるまで10秒待ってくれるので、エラーにならずにスクレイピングができます。

sleep(10)
を入れてもいいかもしれませんが、こちらは時間経過で本当に表示されているかの保証がないため、WebDriverWaitを使った方が確実かなと思います。

おわりに

この記事での質問や、間違っている、もっといい方法があるといったご意見などありましたらご指摘していただけると幸いです。

最後まで読んでいただきありがとうございました!

参考

0
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
0
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?