[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

how to handle java script pop ups ??

Pradeepta Swain

2/4/2008 10:54:00 AM

How can I access java script pop ups using ruby ? I want to access the
alert message as well as click the button of pop up boxes . How can I do
that ? Anybody help ??
--
Posted via http://www.ruby-....

3 Answers

7stud --

2/4/2008 9:46:00 PM

0

Pradeepta Swain wrote:
> How can I access java script pop ups using ruby ? I want to access the
> alert message as well as click the button of pop up boxes . How can I do
> that ? Anybody help ??

I don't think you can. javascript is part of a software program
variously named: IE, Firefox, Safari, etc. that executes on a user's
computer. It's hard to tell what type of program that you want to use
to control the javascript execution:

1) A program running on the user's computer where the web browser is
executing the javascript
2) a program on a remote server.

With 2), you can't affect something that is executing in the user's
browser. A program on a server can decide what to send to the client
browser, but once the client browser starts executing the javascript,
the javascript program decides what will happen from then on--not your
program on the server.

With 1), I think it is probably possible, but you would have to somehow
use ruby to control how a software program is executing, i.e. the
browser. That would require that your ruby program open communication
with the browser and then use it's API to affect how the browser
executes the javascript. I doubt whether the API provides such fine
grained control like that, and if it did, you would probably have to
study the API for years before you could figure out how to do that.






--
Posted via http://www.ruby-....

Ben Weeks

2/4/2008 10:44:00 PM

0

If you want to do a fair amount of hacking you could try playing
around with ruby-spidermonkey, it's a bunch of ruby bindings for
firefox's javascript interpreter, (code named SpiderMonkey.)

http://code.google.com/p/ruby-spi...

Aside from that, I've had a hard time finding good support for JS in
ruby. Maybe somebody on the board has had better results?

On Feb 4, 2008 4:46 PM, 7stud -- <bbxx789_05ss@yahoo.com> wrote:
> Pradeepta Swain wrote:
> > How can I access java script pop ups using ruby ? I want to access the
> > alert message as well as click the button of pop up boxes . How can I do
> > that ? Anybody help ??
>
> I don't think you can. javascript is part of a software program
> variously named: IE, Firefox, Safari, etc. that executes on a user's
> computer. It's hard to tell what type of program that you want to use
> to control the javascript execution:
>
> 1) A program running on the user's computer where the web browser is
> executing the javascript
> 2) a program on a remote server.
>
> With 2), you can't affect something that is executing in the user's
> browser. A program on a server can decide what to send to the client
> browser, but once the client browser starts executing the javascript,
> the javascript program decides what will happen from then on--not your
> program on the server.
>
> With 1), I think it is probably possible, but you would have to somehow
> use ruby to control how a software program is executing, i.e. the
> browser. That would require that your ruby program open communication
> with the browser and then use it's API to affect how the browser
> executes the javascript. I doubt whether the API provides such fine
> grained control like that, and if it did, you would probably have to
> study the API for years before you could figure out how to do that.
>
>
>
>
>
>
>
> --
> Posted via http://www.ruby-....
>
>

Manish Sapariya

2/5/2008 2:47:00 AM

0

Hi Pradeep,
I assume you are trying to automate IE or FF browser, if not
please ignore.

If you are I believe this should help you.
http://wiki.openqa.org/display/W...

Regards,
Manish

Excerpts from Pradeepta Swain's message of Mon Feb 04 16:24:21 +0530 2008:
> How can I access java script pop ups using ruby ? I want to access the
> alert message as well as click the button of pop up boxes . How can I do
> that ? Anybody help ??