//获取select标签aria-label='Question'所有数据
IList
if (all.Count > 0)
{
//循环
foreach (IWebElement beginlink in all)
{
//选定Select下拉框第二个值
SelectElement SelectAn = new SelectElement(beginlink);
SelectAn.SelectByIndex(1);
//被选中值的文本
SelectAn.SelectedOption.GetAttribute("text");
}
}
文章评论