gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-03 12:17:44 25 4
gpt4 key购买 nike

这是一个非常基本的问题,但我无法在任何地方找到答案...如何使用 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'

谢谢!

最佳答案

因为我一直只使用属性 Action 。它对我来说工作正常。使用下面的代码。哪些文本需要从输入中获取

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

关于python - 如何使用 webdriver (python) 检索在文本字段中输入的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9344148/

25 4 0
文章推荐: php - 带有
  • Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com