使用selenium python在页面中查找特定文本

时间:2013-09-25 18:54:24

标签: python firefox selenium selenium-webdriver

我正在尝试使用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()

我似乎没有打印输出。我在这里做错了吗?

1 个答案:

答案 0 :(得分:1)

没有名称为“当前版本”的班级。如果要捕获“当前版本”文本下方的版本号,可以使用此xpath表达式:

browser.find_element_by_xpath("//div[@itemprop='softwareVersion']")