2017-12-22

Python SeleniumでJavascriptを実行するときのメモ

PythonでSeleniumを利用する際、Javascriptを実行したいことがある。その方法を調べていた時のメモ。execute_script()の中でJavascriptを実行してあげればよいみたいだ。

Running javascript in Selenium using Python


driver = webdriver.Firefox()

driver.get("http://stackoverflow.com/questions/7794087/running-javascript-in-selenium-using-python")
driver.execute_script("document.getElementsByClassName('comment-user')[0].click()")

注目の投稿

 PythonのTweepyを利用して、Twitter APIを利用している。 その中で、ハマったポイントをメモしておく。 まず、Searchに関して。 Twitter検索は、クライアントアプリ側では、全期間の検索が可能になっている。 一方で、APIを利用する際は、過去1週間しか...