Re: [wtr-general] Need help in creating HTML reports

2010-11-11 Thread Željko Filipin
On Thu, Nov 11, 2010 at 5:47 AM, vasu br.vas...@gmail.com wrote: Iam using HTML class but facing some issues. And we should read your mind? Please provide more details. And i need to display the test automation status in HTML format. I would suggest that you use rspec for executing tests, it

[wtr-general] Re: using Watirgrid on unit test cases

2010-11-11 Thread Usman Hussain
Have you figured out how to do this? Im very curious... Kind regards, Usman Hussain On Nov 10, 10:12 am, Danijel danijel.vuko...@gmail.com wrote: Hi, I haved created a lot of unit test case in watir for IE. I would like to use watirgrid to execute parallel test on multiple browser. Can you

[wtr-general] Re: Need help in creating HTML reports

2010-11-11 Thread Chuck van der Linden
You realise that what you just asked amounts to 'I need help, please help me' and doesn't provide near enough detail for anyone to offer any level of assistance. what specifically isn't working? Provide a sample of your code Provide an example of the output Provide error text if an error is

[wtr-general] Re: Using HTML report V2 - Reports displayed twice in HTML format

2010-11-11 Thread Chuck van der Linden
On Nov 10, 2:39 am, vasu br.vas...@gmail.com wrote: Please help me in this issue. you've not provided enough details for anyone to help you. at the very minimum you'd need to do something like provide some sample code both for your tests, and of the report class if you've made ANY changes to

[wtr-general] activesupport requires Ruby version = 1.8.7

2010-11-11 Thread abaird
I ran into this message today trying to install watir 1.6.5 on ruby 1.8.6. This was on a completely fresh installation of Ruby 1.8.6 (patchlevel 111). Hopefully you aren’t in a situation where you have to do this, but if you do, just install an earlier version of activesupport. I used 2.3.9,

[wtr-general] Re: using Watirgrid on unit test cases

2010-11-11 Thread Dave McNulla
Wow, that's pretty open-ended type of question. There are so many ways to do things with these tools. The easy answer to give is it depends on what you want to do. Here is an rdoc example of watirgid: https://github.com/90kts/watirgrid/blob/master/EXAMPLES.rdoc From that, it looks like the grid

[wtr-general] Re: Using HTML report V2 - Reports displayed twice in HTML format

2010-11-11 Thread George
I've been using this, and, like Chuck, cannot help due to the fact that you're not provided a lot of info. You shouldn't have to remove the rescue clause, so I would check to make sure that you've copied the code completely before running it. On Nov 11, 7:56 am, Chuck van der Linden

Re: [wtr-general] Unable to call ruby script multiple times!!

2010-11-11 Thread chethan sarathy
here is my code @i = 1 begin   require 'Ft_001' # This is my script   sleep(10)      @i = @i+1     end while @i 10 Thanks, Chethan --- On Wed, 10/11/10, Željko Filipin zeljko.fili...@wa-research.ch wrote: From: Željko Filipin zeljko.fili...@wa-research.ch Subject: Re:

Re: [wtr-general] Unable to call ruby script multiple times!!

2010-11-11 Thread karim rayani
require statement is use to include a library similar to the include statement in C/C++ and not to execute the code I believe we need to replace the require 'XYZ' with system(ruby 'Ft_001.rb') On 11/12/10, chethan sarathy chethan2...@yahoo.co.in wrote: here is my code @i = 1 begin