I need Watir to return an array of hrefs. These hrefs are all in the same div and they all have the same class. My code to grab the first href on the page looks like this:
b.div(:class => 'products').link(:class => 'product_detail_url').href
But, after that I can't find out how to loop through all available hrefs in that div.
I honestly looked all over the place, but none of the solutions I found seemed to address my specific need. Thanks for reading, hopefully someone has a solution.