Skip to content

Instantly share code, notes, and snippets.

@stirno
Created May 25, 2014 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stirno/0fbbaf375a2a53b66e22 to your computer and use it in GitHub Desktop.
Save stirno/0fbbaf375a2a53b66e22 to your computer and use it in GitHub Desktop.
FindMultiple iterate over items
I.FindMultiple("div").Elements.ForEach((elementTuple) =>
{
var commandProvider = elementTuple.Item1;
var elementFunc = elementTuple.Item2;
var element = elementFunc();
// do things with element
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment