In firebug, I see this code for the first three listings
HealthTech Solutions
Group
HealthTech Solutions
Group
Because they each have a class of "l", I have the code set up to look for the href value of the links with class of "l".
string resultStats = browser.Element(Find.ByClass("l")).GetAttributeValue("href").ToString();
//Display URL in text box
txtResults.Text = "Opening URL: " + resultStats;
How can I modify this to pull back all the results, or at least let me select a specific one other than the first?
Replies
Know the answer? Post it — somebody with the same question will find it here.