The JavaScript Shell server for Mozilla (JSSh) is an extension for Mozilla browsers which allows remote users to execute JavaScript in the running browser.

learn more… | top users | synonyms

1
vote
1answer
66 views

Reading a file in ssh server via Java

I want to read a file from SSH server and parse the lines into a list. I used Ganymed SSH libraries to connect and fetch the data. I wanted to read and parse the file named jboss-search14 I used the ...
0
votes
1answer
159 views

How to use watir gem in ruby on rails with JSSH in Firefox?

I installed watir gem in my system through gem install watir after that i Install the JSSH Firefox Extension. My question how to enable the JSSH in firefox and how to use this for testing. ...
1
vote
2answers
498 views

Do I need to open the firefox browser manually from the command prompt with -jssh extension and run the tests in firefox

I have installed firewatir 1.8.0, jssh 0.9 addon. Do I need to open the firefox browser manually from the command prompt with -jssh extension every time I want to run the tests in firefox? When I ...
0
votes
1answer
192 views

browser.contentDocument is undefined (JsshSocket::JSTypeError) when popup is closed [closed]

I have a facebook connect login popup to be tested using watir. Following is my code: def login( browser, email, password ) browser.link(:text, "Connect with Facebook").click browser_two = ...
12
votes
1answer
3k views

Alternatives to FireWatir working with Firefox 4 or higher

It seems, from what I read, that we will not have a JSSH for Firefox 4, and therefore no FireWatir. I have several scripts that run well on FireWatir, and of course I would like to update my Firefox ...
3
votes
0answers
764 views

Has anyone successfully run a WatiN test against FireFox 4?

It looks like the jssh plugin (required to run WatiN) still needs work going by FireFox Bug 586869, to quote: Probably obvious to anyone who ought to be trying to maintain jssh, but, to get it ...
3
votes
1answer
660 views

Firefox + jssh build

Has anyone been able to get anything past 4.0b1 of firefox either nightly or releases to build with jssh enabled in the .mozconfig, I get the error .js component without matching .manifest and if I ...
1
vote
1answer
178 views

javascript/jssh issue firefox 4.0b1

I built jssh for FF 4.0b1 and packaged as an xpi and installed it to my browser, when running javascript that checks tags for a certain phrase in the onclick or onfocus events I am getting an ...
-1
votes
1answer
418 views

javascript error in jssh in firefox 4.0b1

Using this javascript through jssh compiled and built for the new firefox 4.0 beta 1 returns an odd message. Here is the code (sorry if it's a little messy) In summary the code checks all frames of a ...
2
votes
2answers
2k views

getting firewatir to run on mac osx: jssh problems

I am trying to get firewatir to run on Mac OSX Leopard. I have Firefox 3.6rc2 installed but running the most simple script does not work: require 'rubygems' require 'firewatir' ...
1
vote
2answers
1k views

Firefox JSSH Connection or very detailed compile steps on Ubuntu 64?

I'm having a hard time getting jssh and firefox to play nice on an Ubuntu Jaunty 64-bit machine. Anyone know the specific steps needed to make this work? (or, if you're using something else to get ...
0
votes
2answers
107 views

Is this the proper way of denying remote connections to jssh on Linux? [closed]

I don't know if jssh has any security built-in. While testing web apps, I would only like to be able to connect to jssh from localhost. I added the following lines to iptables : iptables -A INPUT -p ...