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

On Wed, Jul 14, 2010 at 6:39 PM, Mario R. [email protected] 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

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

$ ri startClicker

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

 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()

On Fri, Aug 13, 2010 at 1:53 PM, Mario R. [email protected] wrote:

$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.

Jesus.

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

2010/8/13 Jesús Gabriel y Galán [email protected]:

$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()

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.

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.

On Fri, Aug 13, 2010 at 2:07 PM, Mario R. [email protected] wrote:

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

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.

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

On Fri, Aug 13, 2010 at 2:14 PM, Mario R. [email protected] 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

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.