[wtr-general] JSSH on FF 3.0.14

2009-11-10 Thread Alexandre
Hi all, I have 3.0.14-1 firefox on a debian testing box. Then I installed : http://wiki.openqa.org/download/attachments/13893658/jssh-20080725-Linux.xpi?version=1 In a terminal I launch the command: firefox -jssh Then telnet localhost 9997 is Unable to connect to remote host: Connection refused

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread tester86
I removed include Watir now my script is: require 'watir' require 'rubygems' #require win32ole ie = Watir::IE.new ie.goto(http://google.com;) ie.text_field(:name, q).set(watir) ie.button(:name, btnG).click I still get the same error message. I am using watir 1.4.1. Below is my ruby version

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread tester86
watir 1.4.1 On Nov 9, 9:46 pm, Bret Pettichord b...@pettichord.com wrote: What version of Watir are you using? tester86 wrote: I am trying to run a watir script: require 'watir' include Watir ie = Watir::IE.new ie.goto(http://google.com;) ie.text_field(:name, q).set(watir)

[wtr-general] IRB Console

2009-11-10 Thread tester86
In IRB I get the following message and according to Watir In 5 Minutes Im guessing my output is incorrect.. irb(main):001:0 require watir = true irb(main):002:0 ie = Watir::IE.new = #Watir::IE:0x825f690 @ie=#WIN32OLE:0x825f640, @error_checkers=

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread tester86
Here is the list of my local gems (just incase its helps) *** LOCAL GEMS *** actionmailer (2.3.4) actionpack (2.3.4) activerecord (2.3.4) activeresource (2.3.4) activesupport (2.3.4) builder (2.1.2) camping (1.5.180) commonwatir (1.6.2) cucumber (0.4.3) diff-lcs (1.1.2) firewatir (1.6.2) fxri

[wtr-general] Re: IRB Console

2009-11-10 Thread Angrez Singh
Why are you using Watir 1.4.1 when 1.6.5 rc2 is already out. Check this link for more details on installation: http://wiki.openqa.org/display/WTR/Development+Builds* - *Angrez On Tue, Nov 10, 2009 at 8:00 PM, tester86 sagar.am...@gmail.com wrote: In IRB I get the following message and

[wtr-general] Re: chrome watir

2009-11-10 Thread amol
if u need any additional information please feel free to ask querry. Regards, Amol Khawre On Nov 5, 8:42 pm, Ethan notet...@gmail.com wrote: This is not enough information to provide any help. Please read General Posting Guidelines athttp://wiki.openqa.org/display/WTR/Supportand include

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread Jason Trebilcock
In a previous email, you indicate that you're running Watir 1.4.1. But, the below indicates that you're on 1.6.2. In any case, I tried running your code and it worked fine. (What happens if you switch the require 'watir' and require 'rubygems' lines? Could that be the source of your problem?

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread Željko Filipin
On Tue, Nov 10, 2009 at 3:10 PM, tester86 sagar.am...@gmail.com wrote: watir 1.4.1 Please uninstall it and install watir via gem. Ask if you need help with that. Željko -- watir.com - community manager watirpodcast.com - host --~--~-~--~~~---~--~~ You received

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread tester86
This morning I just upgraded to watir 1.6.2 and I also switched the lines but I still got the same output. On Nov 10, 9:00 am, Jason Trebilcock jason.trebilc...@gmail.com wrote: In a previous email, you indicate that you're running Watir 1.4.1.  But, the below indicates that you're on 1.6.2.

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread tester86
Previously, I did instal watir via the gem version 1.4.1 then yesterday I download watir according to some material I found online. This morning I upgraded to watir 1.6.2. and executed my script again but I got the same error message. Do you think I should uninstall ruby and that will remove all

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread Bret Pettichord
I am wondering if maybe this is a permissions problem. Are you using Windows 7? It would help if you printed the error and stack trace that you are now getting. Bret tester86 wrote: This morning I just upgraded to watir 1.6.2 and I also switched the lines but I still got the same output.

[wtr-general] Re: Watir 1.6.5.rc2 - release candidate available for testing

2009-11-10 Thread Bret Pettichord
Where are we with the 1.6.5 release? Bret Charley Baker wrote: There is a change in this version for UTF-8: http://github.com/bret/watir/commit/466332be758a43c6045374c6c6ca03827688e151 I'm honestly not sure if that's throwing you off or not. Let me know, I was hoping to release today. -c

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread tester86
I do not think that it is a permission an issue and I am using windows vista but going to be working on windows 7 soon. I do not know how to get a stack trace from my output. In my previous posts shows the error message that I get in command prompt. Question: 1. How do I check my envirnoment

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread orde
1. How do I check my envirnoment variables for ruby? This will give you the list (from command line): ruby -e 'puts global_variables.sort' This will give you the value for an individual env var: ruby -e 'puts [env_var]'. For example: ruby - e 'puts $DEBUG' orde On Nov 10, 8:47 am, tester86

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread Jason Trebilcock
Not exactly what I had in mind when I mentioned checking the environment variables. For Windows: Control Panel = System = Advanced = Environment Variables. On Tue, Nov 10, 2009 at 11:06 AM, orde ohil...@gmail.com wrote: 1. How do I check my envirnoment variables for ruby? This will give

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread Bret Pettichord
You posted a stack trace earlier. This is displayed after the error message. If you are still getting exactly the same stack trace, then you are still using the old version of watir. A new version of watir will result in a somewhat different stack trace. You can type set at a command prompt

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread tester86
Thanks for all the help I managed to get ruby and watir all up and running. But I have a question, when I was using cucumber I get this error message and they told me to put this post in the watir group: c:/ruby/lib/ruby/gems/1.8/gems/watir-1.6.2/lib/watir/element.rb:52:in `assert_exists':

[wtr-general] Re: Really....Ruby + Watir + Command Line

2009-11-10 Thread Bret Pettichord
My guess is that the browser is not actually on the google page at this point. You could use statements like this to help troubleshoot: puts browser.text puts browser.url puts browser.title Bret tester86 wrote: Thanks for all the help I managed to get ruby and watir all up and

[wtr-general] Watir 1.6.5 is released

2009-11-10 Thread Charley Baker
Hi all, We've done a lot of work for bug fixes and integration with Firefox to make it more conformant to the Watir unit tests. There has been a burgeoning of contributions for this release as compared to previous releases, part of that due to our move to github, and another part due to

[wtr-general] Re: Watir 1.6.5.rc2 - release candidate available for testing

2009-11-10 Thread Charley Baker
Done. I was waiting on some people, never heard back. -c 2009/11/10 Bret Pettichord b...@pettichord.com Where are we with the 1.6.5 release? Bret Charley Baker wrote: There is a change in this version for UTF-8:

[wtr-general] Re: Watir 1.6.5 is released

2009-11-10 Thread Bret Pettichord
Thanks for getting this out Charley. This release represents about a year of work on bug releases and incremental improvements to Watir's support for both Firefox and IE. For complete details, see http://github.com/bret/watir/blob/master/watir/NEWCHANGES I'm really glad that Charley agreed

[wtr-general] Watir Wiki Cleanup

2009-11-10 Thread Željko Filipin
I have been cleaning up Watir wiki recently. Big changes: 1) wiki home page now has more links to relevant pages (Bret asked for it, and it makes a lot of sense) 2) tutorial navigation is fixed (I hope) 3) pop ups are not in tutorial any more (since they are not really supported) 4) pop ups are

[wtr-general] Re: Watir Wiki Cleanup

2009-11-10 Thread Željko Filipin
And if you think What is this wiki thing?, take a look: http://wiki.openqa.org/display/WTR/ Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir General group. To post to this group, send email to

[wtr-general] Re: Watir 1.6.5.rc2 - release candidate available for testing

2009-11-10 Thread jnxgn
I installed the 1.6.5 after the release, chinese input and output still not working. BTW, where can I upload an image to show this. On 11月11日, 上午6时21分, Charley Baker charley.ba...@gmail.com wrote: Done. I was waiting on some people, never heard back. -c 2009/11/10 Bret Pettichord

[wtr-general] Re: Watir 1.6.5.rc2 - release candidate available for testing

2009-11-10 Thread jnxgn
I had sent an email to charley with the image showing the error. On 11月6日, 上午2时58分, Charley Baker charley.ba...@gmail.com wrote: There is a change in this version for UTF-8:http://github.com/bret/watir/commit/466332be758a43c6045374c6c6ca03827... I'm honestly not sure if that's throwing you

[wtr-general] What's the difference between FireWatir1.6.5 and Watir1.6.5

2009-11-10 Thread Wesley Chen
Hi, Guys, It is a great news that FireWatir1.6.5 is released. I tried the attach and enumerate methods, that's perfect. I have seldom used FireWatir before this release 1.6.5. My project runs quite well in Watir in IE. So, I would like to ask a question. What's the difference between FireWatir

[wtr-general] Re: What's the difference between FireWatir1.6.5 and Watir1.6.5

2009-11-10 Thread Wesley Chen
Sorry for the question. I should have read the doc below: http://wiki.openqa.org/display/WTR/Firewatir+Compatibility Thanks. Wesley Chen. For life, the easier, the better. On Wed, Nov 11, 2009 at 10:36 AM, Wesley Chen cjq@gmail.com wrote: Hi, Guys, It is a great news that FireWatir1.6.5

[wtr-general] Re: What's the difference between FireWatir1.6.5 and Watir1.6.5

2009-11-10 Thread Bret Pettichord
Here is a page that documents the differences. http://wiki.openqa.org/display/WTR/Firewatir+Compatibility It needs to be updated for the latest release. Bret Wesley Chen wrote: Hi, Guys, It is a great news that FireWatir1.6.5 is released. I tried the attach and enumerate methods, that's

[wtr-general] Re: Watir 1.6.5.rc2 - release candidate available for testing

2009-11-10 Thread Bret Pettichord
Could you open up a ticket on Jira for this? You can attach images there. http://jira.openqa.org/browse/WTR jnxgn wrote: I installed the 1.6.5 after the release, chinese input and output still not working. BTW, where can I upload an image to show this. On 11月11日, 上午6时21分, Charley Baker

[wtr-general] Re: Basic authentication on Linux with FireWatir

2009-11-10 Thread Angrez Singh
Are you using FireWatir? If yes, then did you went through the entire thread? - Angrez On Tue, Nov 10, 2009 at 8:14 PM, amol amol...@gmail.com wrote: Hi All, I want to handle basic authentication window on linux Please help me for that i'm not able to handle that, as i handle that

[wtr-general] Does watir/ruby support different lang characters (other than ASCII) verification?

2009-11-10 Thread basu
Hi, Does watir/ruby support different lang characters (other than ASCII) verification? Ex: i want to check 完全重新设计的界面,包括专辑画面 text displayed in the application. Thanks -Basu --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google