I am trying to scrape this page using Nokogiri to get all the elements with class name of "teaser".
If I check the page with jQuery, I can see there are 25 elements:
$(".teaser").length => 25
However, when using Nokogiri, I only get the first teaser:
teasers = doc.css('.teaser')
teasers.count => 1
Where am I going wrong? How do I get all the teasers?