I am using Fluent Automation in my project to create more human-readable tests. Info available here http://fluent.stirno.com/ and on GitHub: https://github.com/stirno/FluentAutomation
I need to be able to perform some things that are not implemented with fluent automation and would like to be able to get a hold of the browser or WatiN element. I am actually trying to run a LINQ query such as this:
var indicators = from i in this.CurrentBrowser.Links
where i.Url.Contains("LeadsMine.aspx?flag")
select i;
Any ideas?
Thank you in advance!