在我的 specflow
验收测试中,我需要按给定的班级名称找到最后一个元素,我尝试使用 HtmlFindExpression
但无法找出正确的表达方式。
Element element = WebBrowser.CurrentBrowser.WaitForElement(new HTMLFindExpression("class=case-note-text"),5000, true)
string value = element.InnerText;
StringAssert.AreEqualIgnoringCase("Testing", value, string.Format("abc"));