Click a javascript dialog window in Firefox

Hi,
I'm trying to click a dialog box in Firefox but all the code I found is
not working.
I have watir and firewatir 1.6.5

Thanks

···

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

Firewatir::Firefox has a method startClicker that does that:

$ ri startClicker

---------------------------------------- FireWatir::Firefox#startClicker
     startClicker(button, waitTime = 1, userInput = nil, text = nil)

···

On Wed, Jul 14, 2010 at 6:39 PM, Mario Ruiz <tcblues@gmail.com> wrote:

Hi,
I'm trying to click a dialog box in Firefox but all the code I found is
not working.
I have watir and firewatir 1.6.5

------------------------------------------------------------------------
     Description:

       Tells FireWatir to click javascript button in case one comes
after performing some action on an element. Matches
       text of pop up with one if supplied as parameter. If text
matches clicks the button else stop script execution until
       pop up is dismissed by manual intervention.

     Input:

       button - JavaScript button to be clicked. Values can be OK or Cancel
       waitTime - Time to wait for pop up to come. Not used just
for compatibility with Watir.
       userInput - Not used just for compatibility with Watir
       text - Text that should appear on pop up.

What this really does underneath is to change the window.alert method
for one that returns what you tell it to. It doesn't really open a
window anymore.

I've used this successfully once.

Hope this helps,

Jesus.

But the thing is... if you click first.. ff keeps waiting and doesn't
return the control to ruby so in theory the only way to do it is call
startClicker first and then click the button... but it's not working
properly since what it is doing is just closing the JS window but not
clicking on the button as you can see in this example:

require "firewatir"
$ff = FireWatir::Firefox.new() #create an object to drive the browser
$ff.goto("http://w3schools.com/js/tryit_view.asp?filename=tryjs_confirm")
$ff.startClicker( "OK", 4)
$ff.button(:value,"Show a confirm box").click
sleep 3
$ff.close()

···

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

I don't know if you have other example that does something in the page
when OK is clicked.
What startClicker does, is to override the window.alert function with
a function that returns OK, so really no popup is open at all.

Jesus.

···

On Fri, Aug 13, 2010 at 1:53 PM, Mario Ruiz <tcblues@gmail.com> wrote:

But the thing is... if you click first.. ff keeps waiting and doesn't
return the control to ruby so in theory the only way to do it is call
startClicker first and then click the button... but it's not working
properly since what it is doing is just closing the JS window but not
clicking on the button as you can see in this example:

require "firewatir"
$ff = FireWatir::Firefox.new() #create an object to drive the browser
$ff.goto("http://w3schools.com/js/tryit_view.asp?filename=tryjs_confirm&quot;\)
$ff.startClicker( "OK", 4)
$ff.button(:value,"Show a confirm box").click
sleep 3
$ff.close()

So there is no way to click the buttons on a javascript window

···

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

It also does the same with the confirm button, so your example should
work. I've tested it and it works (debugging with Firebug I see that
the call r = confirm.. returns true).

Jesus.

···

2010/8/13 Jesús Gabriel y Galán <jgabrielygalan@gmail.com>:

On Fri, Aug 13, 2010 at 1:53 PM, Mario Ruiz <tcblues@gmail.com> wrote:

But the thing is... if you click first.. ff keeps waiting and doesn't
return the control to ruby so in theory the only way to do it is call
startClicker first and then click the button... but it's not working
properly since what it is doing is just closing the JS window but not
clicking on the button as you can see in this example:

require "firewatir"
$ff = FireWatir::Firefox.new() #create an object to drive the browser
$ff.goto("http://w3schools.com/js/tryit_view.asp?filename=tryjs_confirm&quot;\)
$ff.startClicker( "OK", 4)
$ff.button(:value,"Show a confirm box").click
sleep 3
$ff.close()

I don't know if you have other example that does something in the page
when OK is clicked.
What startClicker does, is to override the window.alert function with
a function that returns OK, so really no popup is open at all.

Inside Firewatir no, but why do you really need that? Your javascript
code will work as if the user had pressed the OK or the cancel button,
so everything should continue executing normally.

Jesus.

···

On Fri, Aug 13, 2010 at 2:07 PM, Mario Ruiz <tcblues@gmail.com> wrote:

So there is no way to click the buttons on a javascript window

Because, in some cases the page is doing different things depending what
I'm selecting... for example, the window says: do you want to go to
www.google.com? and the options: Yes, No

···

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

But then you can automate to one option or the other with
startClicker("OK") or startClicker("cancel") (or maybe "Cancel", I'm
not sure)

Jesus.

···

On Fri, Aug 13, 2010 at 2:14 PM, Mario Ruiz <tcblues@gmail.com> wrote:

Because, in some cases the page is doing different things depending what
I'm selecting... for example, the window says: do you want to go to
www.google.com? and the options: Yes, No