Does anyone know if one could do something like this in Watir?
1) Pick out a particular element from the source 2) Pick out all links under that element
I know it can be done in hpricot, but can it be done in Watir without hpricot?
Thanks
|
|
|
To riff a bit on Alex's answer
container = some kind of container element such as: div, span, table, row, etc. With tables it can get a bit trickier because often you want all the links in a given column, so then the code ends up looking like this
(perhaps a better rubiest than myself can tell me if that could be done using this to dry things out a bit, or if it would not work?)
|
|||
|
|