FindElement 不会返回元素文本,除非实际上在 DOM 中

发布于 2024-12-08 18:52:57 字数 346 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥抱影子 2024-12-15 18:52:57

尝试使用 element.GetAttribute("value") 而不是使用 Text 属性

IWebElement element = _driver.FindElementById("InputField");
string value = element.GetAttribute("value");

Instead of using the Text property try using element.GetAttribute("value")

IWebElement element = _driver.FindElementById("InputField");
string value = element.GetAttribute("value");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文