Seleniumドキュメントで is_visible
メソッド を見つけましたが、使用方法がわかりません。 is_visible needs a Selenium instance as the first parameter
などのエラーが引き続き発生します。
また、「ロケーター」とは何ですか?
任意の助けをいただければ幸いです。
代わりにis_displayed()
を使用する必要があります。
from Selenium import webdriver
driver = webdriver.Firefox()
driver.get('http://www.google.com')
element = driver.find_element_by_id('gbqfba') #this element is visible
if element.is_displayed():
print "Element found"
else:
print "Element not found"
hidden_element = driver.find_element_by_name('oq') #this one is not
if hidden_element.is_displayed():
print "Element found"
else:
print "Element not found"