我正在尝试使用 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()
我似乎没有打印输出。我在这里做错什么了吗?