From: "lrlebron@..." Date: 2007-01-13T12:35:17+09:00 Subject: Re: Logging to a page and scrapping values If you are running on a windows platform that you should look at watir. It will let you control Internet Explorer and log in to a site. Luis Vikash Kumar wrote: > > require 'net/http' > > > > # read the page data > > > > http = Net::HTTP.new('kvcrpf.org, 80) > > resp, page = http.get('/achievements.htm', nil ) > > > > # BEGIN processing HTML > > > > The code given above can be used to extract values from a web page, I we > don't have to login to a web page, we know in advance which URL to look > for to get data from it, but the problem is to first login to a page, > then go to some desired location to scrap values from it. > > Please help me out in doing this. > Thanks in advance > Vikash > > -- > Posted via http://www.ruby-forum.com/.