Watin :获取下拉列表
我试图从下拉列表中获取一个列表,因为它不是一个选择列表,我尝试过类似的代码,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试像这样获取下拉列表中的元素
希望这有帮助
Try to get the elements inside the dropdown list like so
Hope this help