Re: [Wtr-general] Give a solution fo javascript popup

2007-01-25 Thread Andrew
Hi

Can i use w.click_link_with_text( text )  to click on a link, insted of 
clicking a button within this function?

Thank you
-
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=5883messageID=17680#17680
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general


Re: [Wtr-general] Give a solution fo javascript popup

2007-01-25 Thread Charley Baker

I'm not sure I understand what you're saying, but the function of
click_link_with_text in Watir Simple is to click a link with the given text.
If it's not working the way you expect, you could provide more details?

-Charley

On 1/25/07, Andrew [EMAIL PROTECTED] wrote:


Hi

Can i use w.click_link_with_text( text )  to click on a link, insted of
clicking a button within this function?

Thank you
-
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=5883messageID=17680#17680
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

Re: [Wtr-general] Give a solution fo javascript popup

2007-01-02 Thread Charley Baker

Sure, the FAQ is on a wiki with global rights. Anyone can add to the FAQs.

-c

On 1/2/07, Cain, Mark [EMAIL PROTECTED] wrote:


 Do I have access to edit the FAQ page?  I have a login.



*--Mark*


 --

*From:* [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] *On Behalf Of *Charley Baker
*Sent:* Tuesday, January 02, 2007 2:38 PM
*To:* wtr-general@rubyforge.org
*Subject:* Re: [Wtr-general] Give a solution fo javascript popup



Mark,

  You mind posting that to the FAQ site? Definitely an FAQ and then you or
anyone can send out the url.

-Charley

On 1/2/07, *Cain, Mark *[EMAIL PROTECTED] wrote:

I have posted this many time, it is the most reliable JS popup method I
have every used.   It will even work for the input box (by supplying the
user_input=whatever the user would input) and file upload dialog (by
supplying user_input='Save' or 'Open').  It is better and more reliable
than the one linked below.



   require ' watir\contrib\enabled_popup'



   def startClicker( button , waitTime= 9, user_input=nil )

 hwnd = $ie.enabled_popup(waitTime)  # get a handle if one exists

 *if *(hwnd)  # yes there is a popup

   w = WinClicker.new

   *if* ( user_input )

 w.setTextValueForFileNameField( hwnd, #{user_input} )

   *end*

   sleep 3  # I put this in to see the text being input it is not
necessary to work

   w.clickWindowsButton_hwnd( hwnd, #{button} )  # OK or whatever
the name on the button is

   w=nil# this is just cleanup

 *end*

   end



   $ie =Watir:: IE.start( c:\t est.htm)



   # This is whatever object that uses the click method.

   # You MUST use the click_no_wait method.

   $ie .image(:id, '3' ).click_no_wait

   startClicker(OK , 7 , User Input) # 3rd parameter is optional.







*--Mark*


 --

*From:* [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] *On Behalf Of *Charley Baker
*Sent:* Thursday, December 21, 2006 8:22 AM
*To:* wtr-general@rubyforge.org
*Subject:* Re: [Wtr-general] Give a solution fo javascript popup



Google is your friend, searching for watir javascript dialog, this is the
first link:
http://www.hanselman.com/blog/ClickingAJavaScriptDialogUsingWatir.aspx

-Charley

On 12/20/06, *liucongying* [EMAIL PROTECTED] wrote:

I use ruby185-21 and watir-1.5.1.1127.gem, I want a solution fo js pop the
web html is the one in watir \unittests\html ---
JavascriptClick.html#12290;
   So i hope someone can give me codes of watir to solve js popup,do not
use aotoit! thanks
-
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=5883messageID=16456#16456
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general




___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general



___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general


___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

Re: [Wtr-general] Give a solution fo javascript popup

2006-12-21 Thread Charley Baker

Google is your friend, searching for watir javascript dialog, this is the
first link:
http://www.hanselman.com/blog/ClickingAJavaScriptDialogUsingWatir.aspx

-Charley

On 12/20/06, liucongying [EMAIL PROTECTED] wrote:


I use ruby185-21 and watir-1.5.1.1127.gem, I want a solution fo js pop the
web html is the one in watir \unittests\html ---
JavascriptClick.html#12290;
   So i hope someone can give me codes of watir to solve js popup,do not
use aotoit! thanks
-
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=5883messageID=16456#16456
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

[Wtr-general] Give a solution fo javascript popup

2006-12-20 Thread liucongying
I use ruby185-21 and watir-1.5.1.1127.gem, I want a solution fo js pop the web 
html is the one in watir \unittests\html ---JavascriptClick.html#12290;
   So i hope someone can give me codes of watir to solve js popup,do not use 
aotoit! thanks
-
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=5883messageID=16456#16456
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general