Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Created May 26, 2017 05:08
Show Gist options
  • Select an option

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

Select an option

Save kurozumi/9d810296f471a5c5081b9b40e2cca717 to your computer and use it in GitHub Desktop.
【Python】Seleniumを使って要素が有効かどうか確認する方法
driver = webdriver.Firefox()
driver.get("https:www.google.co.jp")
element = driver.find_element_by_tag_name("body")
# 有効ならTrueを返す
print(element.is_enabled())
driver.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment