Created
May 25, 2014 23:35
-
-
Save stirno/0fbbaf375a2a53b66e22 to your computer and use it in GitHub Desktop.
FindMultiple iterate over items
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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