Re: [Wtr-general] Very basic Watir/Ruby question?

2006-07-27 Thread carl . l . shaulis




Howdy,

I am not sure this addresses your question but we deal with check boxes in
two ways.

We use cells and indices when the checkbox is in a table cell.

@ie.cell(:id, 'something').checkbox(:index,1).set

@ie.checkBox(:id, something).click

Good luck,

Carl

Carl L. Shaulis
Convergys - Senior Analyst
512-634-0607





   
 mi
 [EMAIL PROTECTED] 
   To 
 Sent by:  wtr-general@rubyforge.org   
 wtr-general-bounc  cc 
 [EMAIL PROTECTED]  
   Subject 
   [Wtr-general] Very basic Watir/Ruby 
 07/26/2006 08:36  question?   
 PM
   
   
 Please respond to 
 [EMAIL PROTECTED] 
 orge.org  
   
   




Hi all,
I'm very new to Watir/Ruby stuff:-(  I'm using Simple module to open up
a browser and load a url using new_browser_at(url) and am also using
fill_text_field() and click_button_with_value() to fill all the text
fields and button click on the page.

Now there is a checkbox on the page that i need to click also and i
don't see any functions that will do under Simple module??  How would I
go by to click on the checkbox

Thanks in advance!!
___
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] Very basic Watir/Ruby question?

2006-07-27 Thread Zeljko Filipin
This is what watir simple can do: http://wtr.rubyforge.org/rdoc/classes/Watir/Simple.htmlI did not find anything about checkboxes. I guess it is time for you to start using the real watir. You will see it is not that difficult. Just follow user guide: 
http://www.openqa.org/watir/watir_user_guide.html
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

[Wtr-general] Very basic Watir/Ruby question?

2006-07-26 Thread mi
Hi all,
I'm very new to Watir/Ruby stuff:-(  I'm using Simple module to open up 
a browser and load a url using new_browser_at(url) and am also using 
fill_text_field() and click_button_with_value() to fill all the text 
fields and button click on the page.

Now there is a checkbox on the page that i need to click also and i 
don't see any functions that will do under Simple module??  How would I 
go by to click on the checkbox

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


Re: [Wtr-general] Very basic Watir/Ruby question?

2006-07-26 Thread Jordan Glasner

On Jul 26, 2006, at 9:36 PM, mi wrote:

 How would I
 go by to click on the checkbox

ie.checkbox(:id,'your_id').set


http://wtr.rubyforge.org/rdoc/classes/Watir/CheckBox.html

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