gpt4 book ai didi

java - 输入文本后如何从文本字段(密码)检索文本

转载 作者:行者123 更新时间:2023-12-02 09:40:13 27 4
gpt4 key购买 nike

步骤 1 在文本字段中输入文本(密码)步骤2 在文本字段中输入文本后,从文本字段中检索文本

这是使用 java 的 Selenium

***WebElement Password = driver.findElement(By.id("usrPwd"));
Password.sendKeys("Future1234");
String Text = driver.findElement(By.id("usrPwd")).getAttribute("Value");
System.out.println(Text);***

控制台中实际输出为空,但预期输出为“Future1234”

最佳答案

  1. 您不需要再次查找该元素,键入按键不会导致StaleElementReferenceException 。或者,为了安全起见,您可以考虑实现 Page Object Model design pattern ,这样你就不必查找元素或等待它们,它将由 PageFactory 处理。
  2. password input type
  3. value 属性应该是小写

    enter image description here

关于java - 输入文本后如何从文本字段(密码)检索文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57145925/

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