gpt4 book ai didi

junit - 如何在 Selenium 2 中编辑文本字段?

转载 作者:行者123 更新时间:2023-12-01 23:05:43 24 4
gpt4 key购买 nike

我可以使用 WebElement.sendKeys() 在字段中输入文本,但编辑不起作用:我既无法移动光标,也无法删除使用 e 输入的最后一个字符。 sendKeys(Keys.BACK_SPACE)

如何修改 Selenium 2 (WebDriver) 中文本字段的值?

最佳答案

您绝对可以通过这两种方法之一来做到这一点。我已经尝试过并且有效。

e.click()   # Positions the cursor at the end of the string
e.sendKeys(Keys.BACK_SPACE )

或者您可以简单地清除文本,然后重新开始:

e.clear()
e.sendKeys("What you want to send")

关于junit - 如何在 Selenium 2 中编辑文本字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7902776/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com