如何使用webdriver(python)检索在文本字段中输入的文本?

时间:2012-02-18 18:55:00

标签: python webdriver

这是一个非常基本的问题,但我无法在任何地方找到答案...如何在python下使用webdriver检索文本字段中输入的文本?我尝试过几个texttext()都没有效果。

>>> driver.get("http://en.wikipedia.org/wiki/Main_Page")
>>> el = driver.find_elements_by_xpath("//input[contains(@name, 'search')]")
>>> el
[<selenium.webdriver.remote.webelement.WebElement object at 0x10d15f6d0>]
>>> el[0].send_keys("orange") # this works
>>> el[0].text
''
>>> el[0].text()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'str' object is not callable
>>> el[0].get_text()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'WebElement' object has no attribute 'get_text'

谢谢!

2 个答案:

答案 0 :(得分:11)

因为我一直只使用属性操作。它对我很好。使用下面的代码。需要从输入中获取哪些文本

Description=driver.find_element_by_xpath("//*[@id='id_description']")
Description.clear()
Description.send_keys("xxx")
Description.get_attribute("xxxx")
print Description

答案 1 :(得分:5)

当我用firebug调查维基百科网站上的搜索元素时,我觉得输入的文本值存储在value-attribute中。所以你必须得到这个属性。