FindElement 不会返回元素文本,除非实际上在 DOM 中
我正在使用 Selenium 的网络驱动程序,但我遇到了一个问题。 我正在使用 KnockoutJS 将我的 UI 绑定到服务器中的数据。在我的测试中,当我调用 FindElement(By.Id("InputField")) 时,它返回元素正常,但不幸的是 Text() 字段为空。
当我在字段上运行 Jquery 选择器时:
$("#InputField").val()
它会在输入字段中显示文本。
当我检查 Html 源时,输入字段中没有值,我猜这是因为 KnockoutJS 稍后将值绑定到输入字段。
如何让 WebDriver 从字段中正确提取属性、文本等,而不仅仅是空文本?
I'm using Selenium's webdriver, but I've hit upon a problem.
I'm using KnockoutJS to bind my UI to data from the server. In my tests when I call FindElement(By.Id("InputField"))
it is returning the element ok, but unfortunately the Text() field is empty.
When I run a Jquery selector on the field:
$("#InputField").val()
it gives me the text in the input field ok.
When I inspect the Html source, there is no value in the input field, and I guess this is because KnockoutJS is binding the value to the input field late.
How do I get WebDriver to pull the attributes, text etc. from the field correctly rather than just empty text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
element.GetAttribute("value")
而不是使用Text
属性Instead of using the
Text
property try usingelement.GetAttribute("value")