我正试图从下拉列表中获取一个列表,因为它不是一个选择列表我尝试过这样的事情
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 。如何点击下拉列表。有什么建议吗?
答案 0 :(得分:0)
尝试将下拉列表中的元素添加到
中var select = this.ContextBrowser.Link(new Regex("ddlSQuestion1_Arrow")).Element[2];
select.click();
希望这个帮助