Watin :获取下拉列表

发布于 2024-10-09 14:06:12 字数 336 浏览 6 评论 0原文

我试图从下拉列表中获取一个列表,因为它不是一个选择列表,我尝试过类似的代码,

   this.ContextBrowser.Link(new Regex("ddlSQuestion1_Arrow")).Click();
   this.ContextBrowser.Div(Find.ByText(new Regex("What is the name of the first school you attended?"))).Click();

代码实际上所做的是单击下拉箭头,设法下拉列表,但我无法单击该列表又名li。我如何点击下拉列表。有什么建议吗?

I'm trying to get a list from a dropdown,since it's not a selectlist i've tried something like this

   this.ContextBrowser.Link(new Regex("ddlSQuestion1_Arrow")).Click();
   this.ContextBrowser.Div(Find.ByText(new Regex("What is the name of the first school you attended?"))).Click();

What the code is actually doing is clicking on the dropdown arrow, manage to pull down the list but i can;t click on the list aka li.How can i click on the dropdown list.Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

往日情怀 2024-10-16 14:06:12

尝试像这样获取下拉列表中的元素

var select = this.ContextBrowser.Link(new Regex("ddlSQuestion1_Arrow")).Element[2];
select.click();

希望这有帮助

Try to get the elements inside the dropdown list like so

var select = this.ContextBrowser.Link(new Regex("ddlSQuestion1_Arrow")).Element[2];
select.click();

Hope this help

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