I've been trying but I cant get these specific links on this page: http://www.windowsphone.com/en-us/store/top-free-apps I want to get each one of the links on the left side of this page, entertainment for example, but I cant find the right reference to get them. it's the script:
require 'mechanize'
agent = Mechanize.new
page = agent.get("http://www.windowsphone.com/en-us/store/top-free-apps")
page.links_with(???)
what should I put instead of ??? so that I cant get those links? I've tried stuff like:
page.links_with(:class => 'categoryNav navText')
OR
page.links_with(:class => 'categoryNav')
OR
page.links_with(:class => 'navText')
etc can anyone help please?