[ruby-core:94260] [Ruby master Misc#16096] each in each (multiple uses 'each')
From:
FreeKMan@...
Date:
2019-08-10 23:15:08 UTC
List:
ruby-core #94260
Issue #16096 has been updated by D1mon (Dim F).
**selenium**
``` ruby
for el in driver.find_elements(xpath: <some_xpath>)
for e1 in el.find_elements(xpath: ...)
...
end
for e2 in el.find_elements(xpath: ...)
...
end
end
```
I need to do two searches in one pass
----------------------------------------
Misc #16096: each in each (multiple uses 'each')
https://bugs.ruby-lang.org/issues/16096#change-80575
* Author: D1mon (Dim F)
* Status: Feedback
* Priority: Normal
* Assignee:
----------------------------------------
``` ruby
obj.each {|a|
a.some_method1.each {|b|
... # comes here (enter)
}
a.some_method2.each {|c|
... # does not enter here
}
}
# tried and that way. also does not go
for a in obj
for b in a.some_method1
... # comes here
end
for c in a.some_method2
... # does not enter here
end
end
```
help solve the problem. I’ve been suffering for 2 days.
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>