I am running a test on watir through command line interface.
what I want is, when the watir has finished running last line of instructions, it should export message in excel saying eg. "test case 1 passed." or "test case 1 failed".
I am using Watir
|
I am running a test on watir through command line interface. what I want is, when the watir has finished running last line of instructions, it should export message in excel saying eg. "test case 1 passed." or "test case 1 failed". I am using Watir |
|||||||||
|
|
If you want to write to excel, there are various gems (libraries) you can use. Here are a couple of options. win32ole There are various gems out there that can write excel files. Personally, I use the win32ole gem since it does not require additional gems to be installed. An example of creating an excel file with this gem is:
You can add formatting, etc - see http://davidsulc.com/blog/2011/03/27/using-ruby-and-win32ole-to-manipulate-excel/ CSV If you do not need any formatting, you might consider creating a csv file using the CSV gem. An example of creating a csv file with this gem is:
See the documentation for more details. |
|||
|
|