当我试图从文本框中获取值时,它会抛出没有找到此类元素的问题,
下面是我的字段属性:
input id =“altid”class =“firstColumnInput text C1 disabled”type =“text”value =“100281” securityidpath = “MEMBER_DEMOGRAPHICS.INDICATIVE_INFORMATION.INDICATIVE_INFORMATION.PERSON.ALT_IDENTIFIER” name =“$ EntryField $ 7”lockrequired =“true”tabindex =“ - 1” 只读= “只读”
获取值的代码是:
driver.findElement(By.xpath(OR.getProperty(对象)))的getAttribute( “值”);
结果:
org.openqa.selenium.NoSuchElementException:无法找到元素: {“method”:“xpath”,“selector”:“ // * [@ id = \”age \“]”} 有关此错误的文档,请访问: http://seleniumhq.org/exceptions/no_such_element.html构建信息: 版本:'2.2.0',修订版:'13073',时间:'2011-07-25 19:23:22' 系统信息:os.name:'Windows XP',os.arch:'x86',os.version:'5.1', java.version:'1.6.0_22'驱动程序信息:driver.version: EventFiringWebDriver
请建议我如何解决此问题。
答案 0 :(得分:3)
尝试使用xpath搜索输入的id,如:
driver.findElement(By.xpath("//*[@id=\"altid\"]")).getAttribute("value");
答案 1 :(得分:0)
您似乎在寻找具有属性id =“age”的任何元素。参考,
Unable to locate element: {"method":"xpath","selector":"//*[@id=\"age\"]"}
该特定输入的id似乎是“altid”,因此您只需使用正确的id值。