[wtr-general] Re: firewatir and jssh

2009-05-21 Thread Angrez Singh
Class method for Firefox Attach is there in the Watir trunk. Getting latest version will solve the problem - Angrez On Thu, May 21, 2009 at 12:25 PM, Bill Agee billa...@gmail.com wrote: If you just need to attach to a Firefox window, and don't need the same code to work with IE and Firefox, I

[wtr-general] Re: firewatir and jssh

2009-04-17 Thread Darin Duphorn
:* [wtr-general] Re: firewatir and jssh I tried the code with system() command and following might be the reason it is not working: When you try to open firefox using system command it returns when firefox shows up. But it doesn't wait

[wtr-general] Re: firewatir and jssh

2009-04-16 Thread Darin Duphorn
Of Angrez Singh Sent: Wednesday, April 15, 2009 12:59 AM To: watir-general@googlegroups.com Subject: [wtr-general] Re: firewatir and jssh I tried the code with system() command and following might be the reason it is not working: When you try to open firefox using system command it returns when firefox

[wtr-general] Re: firewatir and jssh

2009-04-16 Thread Darin Duphorn
I'm also using Firefox 3.08. From: watir-general@googlegroups.com [mailto:watir-gene...@googlegroups.com] On Behalf Of Darin Duphorn Sent: Thursday, April 16, 2009 9:57 AM To: watir-general@googlegroups.com Subject: [wtr-general] Re: firewatir and jssh

[wtr-general] Re: firewatir and jssh

2009-04-16 Thread Bret Pettichord
Firewatir 1.6.2 on windows XP SP3 * From: * watir-general@googlegroups.com [mailto: watir-general@googlegroups.com ] *On Behalf Of *Angrez Singh *Sent:* Wednesday, April 15, 2009 12:59 AM *To:* watir-general@googlegroups.com *Subject:* [wtr-general] Re: firewatir and jssh I tried the code

[wtr-general] Re: firewatir and jssh revisited

2009-04-15 Thread Željko Filipin
On Wed, Apr 15, 2009 at 15:54, Jeremy Mordkoff j...@zeevee.com wrote: Is there a jssh forum? The last I heard about jssh is that it is abandonware. Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Watir

[wtr-general] Re: firewatir and jssh revisited

2009-04-15 Thread Jeremy Mordkoff
FYI...Right now, I'm working on windows XP SP3 with Firefox 3.0.8 and jssh 0.9 on a dell laptop. I also need to get this to work on Vista SP1 and Mac OS 10.5. My thread got hijacked L Can we go back to the original problem? As of right now, I cannot use firewatir at all because of this

[wtr-general] Re: firewatir and jssh revisited

2009-04-15 Thread Jeremy Mordkoff
. JLM From: watir-general@googlegroups.com [mailto:watir-gene...@googlegroups.com] On Behalf Of Željko Filipin Sent: Wednesday, April 15, 2009 10:03 AM To: watir-general@googlegroups.com Subject: [wtr-general] Re: firewatir and jssh revisited On Wed, Apr 15, 2009 at 15:54, Jeremy Mordkoff

[wtr-general] Re: firewatir and jssh revisited

2009-04-15 Thread Željko Filipin
On Wed, Apr 15, 2009 at 16:11, Jeremy Mordkoff j...@zeevee.com wrote: Are there plans to move firewatir to a different technology I think Bret said in a podcast that they will move to something different. http://watirpodcast.com/bret-pettichord-on-firewatir/ Željko

[wtr-general] Re: firewatir and jssh revisited

2009-04-15 Thread Angrez Singh
can you post HTML code for this? I'll look into it. - Angrez On Wed, Apr 15, 2009 at 7:24 PM, Jeremy Mordkoff j...@zeevee.com wrote: My thread got hijacked L Can we go back to the original problem? As of right now, I cannot use firewatir at all because of this problem… In firebug, I

[wtr-general] Re: firewatir and jssh

2009-04-14 Thread Moochie
from irb using system or exec it hangs. -Original Message- From: watir-general@googlegroups.com [mailto:watir-gene...@googlegroups.com] On Behalf Of bwaybandit Sent: Monday, April 13, 2009 12:42 PM To: Watir General Subject: [wtr-general] Re: firewatir and jssh system(C

[wtr-general] Re: firewatir and jssh

2009-04-14 Thread Angrez Singh
:18 AM To: Watir General Subject: [wtr-general] Re: firewatir and jssh If you use the system command and launchfirefoxlike that, that will load jssh Now that you have jssh in memory, you need to launch the page you want toattachto. require 'watir

[wtr-general] Re: firewatir and jssh

2009-04-13 Thread Angrez Singh
For attaching to an existing Firefox instance you can use FireWatir::Firefox.attach() method. But you need to make sure the JSSh is running in the existing instance. Regarding XPath i'll look into it get back to you. - Angrez On Fri, Apr 10, 2009 at 8:42 PM, Jeremy Mordkoff j...@zeevee.com

[wtr-general] Re: firewatir and jssh

2009-04-13 Thread George
It was my understanding that the attach method doesn't work with FF, only with IE. Can you confirm this? On Apr 13, 12:07 am, Angrez Singh ang...@gmail.com wrote: For attaching to an existing Firefox instance you can use FireWatir::Firefox.attach() method. But you need to make sure the JSSh

[wtr-general] Re: firewatir and jssh

2009-04-13 Thread Angrez Singh
I tried the following code with Firewatir 1.6.2 and it worked for me. require 'firewatir' ff = FireWatir::Firefox.attach(:title,Google) puts ff.html ff.close - Angrez On Mon, Apr 13, 2009 at 1:31 PM, George george.sand...@gmail.com wrote: It was my understanding that the attach method

[wtr-general] Re: firewatir and jssh

2009-04-13 Thread bwaybandit
i use putty and that takes care of that problem. The telnet windows client has that problem you mentioned. On Apr 13, 6:54 am, Angrez Singh ang...@gmail.com wrote: I tried the following code with Firewatir 1.6.2 and it worked for me. require 'firewatir' ff =

[wtr-general] Re: firewatir and jssh

2009-04-13 Thread Darin Duphorn
[mailto:watir-gene...@googlegroups.com] On Behalf Of Angrez Singh Sent: Monday, April 13, 2009 5:55 AM To: watir-general@googlegroups.com Subject: [wtr-general] Re: firewatir and jssh I tried the following code with Firewatir 1.6.2 and it worked for me. require 'firewatir' ff = FireWatir

[wtr-general] Re: firewatir and jssh

2009-04-13 Thread bwaybandit
Singh Sent: Monday, April 13, 2009 5:55 AM To: watir-general@googlegroups.com Subject: [wtr-general] Re: firewatir and jssh I tried the following code with Firewatir 1.6.2 and it worked for me. require 'firewatir' ff = FireWatir::Firefox.attach(:title,Google) puts ff.html ff.close

[wtr-general] Re: firewatir and jssh

2009-04-13 Thread Darin Duphorn
] On Behalf Of Angrez Singh Sent: Monday, April 13, 2009 5:55 AM To: watir-general@googlegroups.com Subject: [wtr-general] Re: firewatir and jssh I tried the following code with Firewatir 1.6.2 and it worked for me. require 'firewatir' ff = FireWatir::Firefox.attach(:title,Google) puts

[wtr-general] Re: firewatir and jssh

2009-04-13 Thread Darin Duphorn
...@googlegroups.com] On Behalf Of Angrez Singh Sent: Monday, April 13, 2009 5:55 AM To: watir-general@googlegroups.com Subject: [wtr-general] Re: firewatir and jssh I tried the following code with Firewatir 1.6.2 and it worked for me. require 'firewatir' ff = FireWatir::Firefox.attach(:title,Google

[wtr-general] Re: firewatir and jssh

2009-04-13 Thread bwaybandit
- From: watir-general@googlegroups.com [mailto:watir-gene...@googlegroups.com] On Behalf Of bwaybandit Sent: Monday, April 13, 2009 12:42 PM To: Watir General Subject: [wtr-general] Re: firewatir and jssh system(C:\\Program Files\\Mozilla Firefox\\firefox.exe -jssh). that works for me

[wtr-general] Re: firewatir and jssh

2009-04-10 Thread Jeremy Mordkoff
Okay, I answered some of my own questions. I stumbled on the RDOC browser, found js_eval and I started munging it. In firebug, I can do var results = document.evaluate(//*[name()='vgtile' and @label='Hulu'], document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null); if

[wtr-general] Re: firewatir and jssh

2009-04-10 Thread bwaybandit
probably is an easy way, but i do it the old fashioned way when i am debugging using the proxy server. i telnet into the port you started it on and you have a nice prompt and can do your thing... On Apr 10, 11:12 am, Jeremy Mordkoff j...@zeevee.com wrote: Okay, I answered some of my own