[wtr-general] Re: Need a sample code to import test data from Excel sheet

2009-09-07 Thread Ari
MS Excel file can be read using parseexcel. See details in http://ari-techno.blogspot.com/2009/09/reading-microsoft-office-excel-file-in.html On Aug 11, 8:37 am, Naveen devadass wrote: > Hi all, > Can you please help on this --~--~-~--~~~---~--~~ You re

[wtr-general] Re: o store watir output results in a directory,how I will create the directory from the script without creating the directory manually

2009-09-07 Thread Ari
hi Maumita, You can use following code to create the directory. This will create the directory if it's not there.: Dir.mkdir(directory_path) if !File.exist( directory_path ) Also check ruby documentation (http://www.ruby-doc.org/core/classes/ Dir.html#M002318) if default permission doesnot work