is_visible
Selenium のドキュメントでメソッドを見つけましたが、使い方がわかりません。などのエラーが発生し続けis_visible needs a selenium instance as the first parameter
ます。
また、「ロケーター」とは何ですか?
どんな助けでも大歓迎です。
is_visible
Selenium のドキュメントでメソッドを見つけましたが、使い方がわかりません。などのエラーが発生し続け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"