我在我的项目中使用 Fluent Automation 来创建更多人类可读的测试。此处提供信息http://fluent.stirno.com/和 GitHub:https ://github.com/stirno/FluentAutomation
我需要能够执行一些没有通过流畅的自动化实现的事情,并且希望能够掌握浏览器或 WatiN 元素。我实际上是在尝试运行这样的 LINQ 查询:
var indicators = from i in this.CurrentBrowser.Links
where i.Url.Contains("LeadsMine.aspx?flag")
select i;
有任何想法吗?
先感谢您!