Hi Chintu,

Data from a webpage can be captured using Watir.
It can also be captured using http, if javascript execution is not
required. (screen scrapping static web pages)

require 'watir'
ienw = Watir::IE.new()
ienw.goto("your webpage")

var = ienw.table(:name, 'name of table')[1][2].text #(use :index if
name is not present, [row][column])

-Tony

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To post to this group, send email to watir-general@googlegroups.com
Before posting, please read the following guidelines: 
http://wiki.openqa.org/display/WTR/Support
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~----------~----~----~----~------~----~------~--~---

Reply via email to