[wtr-general] Re: JSSH for Firefox3.1

2008-12-24 Thread Aleksey Tyschenko
It contains xpi only for FF3.0.
FF3.1 can be run with this extension but after Watir::Browser.new it
crashes.

--~--~-~--~~~---~--~~
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 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: JSSH for Firefox3.1

2008-12-24 Thread al3kc

It contains xpi only for FF3.0.
FF3.1 can be run with this extension but after Watir::Browser.new it
crashes.
--~--~-~--~~~---~--~~
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 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: JSSH for Firefox3.1

2008-12-24 Thread Wilson Xu
How about use FireWatir::Firefox.start(url) or ff = FireWatir::Firefox.new;
ff.goto(url)?
Wilson Xu

On Wed, Dec 24, 2008 at 4:22 PM, Aleksey Tyschenko
aleks.kiev...@gmail.comwrote:

 It contains xpi only for FF3.0.
 FF3.1 can be run with this extension but after Watir::Browser.new it
 crashes.


 


--~--~-~--~~~---~--~~
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 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: JSSH for Firefox3.1

2008-12-24 Thread Angrez Singh
Right now I think its in beta version once it gets released and code is
stable we can get the JSSh xpi for Firefox 3.1

- Angrez

On Wed, Dec 24, 2008 at 2:01 PM, Wilson Xu xu.xiaodong.wil...@gmail.comwrote:

 How about use FireWatir::Firefox.start(url) or ff = FireWatir::Firefox.new;
 ff.goto(url)?
 Wilson Xu


 On Wed, Dec 24, 2008 at 4:22 PM, Aleksey Tyschenko aleks.kiev.ua@
 gmail.com wrote:

 It contains xpi only for FF3.0.
 FF3.1 can be run with this extension but after Watir::Browser.new it
 crashes.





 


--~--~-~--~~~---~--~~
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 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: CI reporter issue

2008-12-24 Thread Tiffany Fodor

Hi Basu!

Are you getting any kind of error message when the xml file is not
generated?

Can you provide some details on how you're using ci_reporter (where in
your harness it's being called, etc.)

Thanks!

-Tiffany

On Dec 23, 2:14 am, basu bas.go...@gmail.com wrote:
 I am using CI reporter for generating test results in the form of a
 XML file, some time result file is not getting generated even though
 all tests pass without any issues.Is there any limitation on the XML
 output file name length ?Is the issue related to that ?

 Thanks
 Basu
--~--~-~--~~~---~--~~
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 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: Unable to open an email in Gmail version 2

2008-12-24 Thread Wilson Xu

I write a simple test code, I met issue after click each email, please
look at my code, please let me know if you resolve.
  require 'watir'

  ie = Watir::IE.start(http://mail.google.com;)
  ie.bring_to_front
  ie.text_field(:id, 'Email').set('xu.xiaodong.wilson')
  ie.text_field(:id, 'Passwd').set('wilson1983')
  ie.button(:name, 'signIn').click
  ie.frame(:id, 'canvas_frame').link(:text, 'Inbox').click
  sleep(10)
  divs = ie.frame(:id, 'canvas_frame').table(:id, ':o1').divs

  divs.each{|div|
divid = div.id.to_s
if  divid.strip !=   divid.strip !=nil
  # Can't open the email content after click corresponding email.
  ie.frame(:id, 'canvas_frame').div(:id, div.id).click
  sleep(2)
  ie.frame(:id, 'canvas_frame').link(:text, 'Inbox').click
  sleep(2)
end
  }


On Dec 25, 3:42 am, NS nishasu...@gmail.com wrote:
 I am automating gmail using ruby-watir. I need to open each email and
 take screen shots and save those files on local drive and delete the
 email. I have to do this until all the emails from the inbox are
 cleared.

 I am able to login to gmail account and click on the Inbox link but
 after that I am not able to click on the email to open.

 The td that displays the subject and contents of the email, has an
 attribute role=link defined, I do not understand what that means but I
 tried clicking that td with no success.

 The class names and ids sees to be randomly generated so doesn't make
 sense to use those.

 Any help will be appreciated.

 Thanks,
 N S
--~--~-~--~~~---~--~~
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 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---



[wtr-general] Re: JSSH for Firefox3.1

2008-12-24 Thread Wilson Xu

Why do you always use Firefox3.1, I think you can use firefox2.x
version to your testing when jssh3.x is not ready for release.

Wilson Xu

On Dec 24, 6:18 pm, Angrez Singh ang...@gmail.com wrote:
 Right now I think its in beta version once it gets released and code is
 stable we can get the JSSh xpi for Firefox 3.1

 - Angrez

 On Wed, Dec 24, 2008 at 2:01 PM, Wilson Xu 
 xu.xiaodong.wil...@gmail.comwrote:

  How about use FireWatir::Firefox.start(url) or ff = FireWatir::Firefox.new;
  ff.goto(url)?
  Wilson Xu

  On Wed, Dec 24, 2008 at 4:22 PM, Aleksey Tyschenko aleks.kiev.ua@
  gmail.com wrote:

  It contains xpi only for FF3.0.
  FF3.1 can be run with this extension but after Watir::Browser.new it
  crashes.
--~--~-~--~~~---~--~~
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 
watir-general-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/watir-general
-~--~~~~--~~--~--~---