Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Created May 26, 2017 14:46
Show Gist options
  • Select an option

  • Save kurozumi/ef2f7dc4d7377b594e5f0ad693a1acf7 to your computer and use it in GitHub Desktop.

Select an option

Save kurozumi/ef2f7dc4d7377b594e5f0ad693a1acf7 to your computer and use it in GitHub Desktop.
【Python】Seleniumを使ってページタイトルを取得する方法
from selenium import webdriver
try:
driver = webdriver.Firefox()
driver.get("https://a-zumi.net")
print(driver.title)
finally:
driver.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment