Created
September 25, 2014 15:36
-
-
Save dimacus/097a6c96953dae22ac13 to your computer and use it in GitHub Desktop.
This file contains 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
trs = selenium.find_elements(:css, "tr"); | |
trs.each -> tr #Storing current loop var in tr | |
tds = tr.find_elements(:css, "td"); | |
if tds[1] == "user-x" | |
trs[5].click |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment