Selenium python を使用して、ページhttps://play.google.com/store/apps/details?id=org.codein.filemanager&hl=enから特定のテキストを見つけようとしています。上記のURLから要素名-現在のバージョンを探しています。以下のコードを使用しました
browser = webdriver.Firefox() # Get local session of firefox
browser.get(sampleURL) # Load page
elem = browser.find_elements_by_clsss_name("Current Version") # Find the query box
print elem;
time.sleep(2) # Let the page load, will be added to the API
browser.close()
出力が印刷されないようです。私はここで何か悪いことをしていますか?