Re: Read from XLS and substitute values in Ruby (Watir)
- From: Madu Nar <bharadwaj.n@xxxxxxxxx>
- Date: Tue, 12 Sep 2006 02:36:14 +0900
Also,Is there a way to read from csv file or xls file because currently
I am trying to read from a txt file.
Should I Require/import any particular libraries before trying to read
from a CSV or an xls file.
Any help appreciated.
Thanks again,
Madu
Madu Nar wrote:
Hello Paul,
Thank you so much for the Info...
I tried and it did work. But, how do I pass each of those split
tokens as separate parameters for the text fields.
Ex: ie.text_field(:name,
"SearchFormHandler.searchTerms").set("Brian Kantz")
ie.select_list(:name,
"SearchFormHandler.state").select("California")
So the values Brian Kantz, California should be automatically
substituted from the file... Your help is greatly appreciated...
Thanks,
Madu
Paul Lutus wrote:
Madu Nar wrote:
I need to pass each row of records into a text_fields for username and
password and click on go...
I need to do this till the end of the file... could somebody tell me as
to how I parameterize the values for the text fields so that it
automatically picks up the records for each row...
In your example above, one of the field names is "User Name", with a
space.
Yet the field separator for the data records below it appears to uses
one
or more spaces as delimiters. On the other hand, it might be tabs, hard
to
tell from your post.
Let's assume that tabs are used instead of spaces between the fields. If
that is true, then (untested):
File.read("filename").each do |record|
record.split("\t").each do |field|
# your turn
end
end
--
Posted via http://www.ruby-forum.com/.
.
- References:
- Read from XLS and substitute values in Ruby (Watir)
- From: Madu Nar
- Re: Read from XLS and substitute values in Ruby (Watir)
- From: Paul Lutus
- Re: Read from XLS and substitute values in Ruby (Watir)
- From: Madu Nar
- Read from XLS and substitute values in Ruby (Watir)
- Prev by Date: Re: anti-advocacy advocacy
- Next by Date: Re: word substitution in file
- Previous by thread: Re: Read from XLS and substitute values in Ruby (Watir)
- Next by thread: libxslt-ruby - dead or alive?
- Index(es):
Relevant Pages
|