I'm trying to parse http://www.pro-medic.ru/index.php?ht=246&perpage=all with Nokogiri, but unfortunately I can't get all items from the page.
My simple test code is:
require 'open-uri'
require 'nokogiri'
html = Nokogiri::HTML open('http://www.pro-medic.ru/index.php?ht=246&perpage=all')
p html.css('ul.products-grid-compact li .goods_container').count
It returns only 83 items but the real count is about 186.
I thought that the problem could be in open
, but it seems that function reads the HTML page correctly.
Has anybody faced the same problem?