I would like to select a checkbox from an excel spreadsheet for a data driven test.

code for the checkbox:

Not Checked:

<input type="checkbox" class="greenopt" name="Accounts[0][greenopt]" id="" value="0"> 

Checked:

<input type="checkbox" class="greenopt" name="Accounts[0][greenopt]" id="" value="1">

I tried the following but get the error: Unable to locate element, using {:value=>"1"}

greenopt_check=worksheet.cells(rows,"O").value 
browser.checkbox(:value => greenopt_check).set

this is kind of similar to my previous question regarding radio buttons Select Radio buttons from excel with ruby

link|improve this question

57% accept rate
is the HTML code above for the same checkbox? is the checkbox value changing when the checkbox is selected? We may need to see more of the HTML to make much sense of this, for example how does a user know which checkbox they are selecting and what it does? knowing how the user determines what checkbox to tick may lead us to a good way to have Watir identify the checkbox. – Chuck van der Linden Feb 1 at 19:46
what is wrong with >> browser.checkbox(class => 'greenopt').set – Dave McNulla Feb 1 at 23:59
without seeing more of the page we don't know if it's unique. But @DaveMcNulla I have to admit, going after the Name or the Class as a way to identify the right checkbox would be my first inclination. Name is just a tiny bit more likely to be unique, since I've seen class get re-used a fair bit when it's used to trigger CSS styles for formatting and appearance. but without more HTML we don't know which is a better option or if they are equivalent – Chuck van der Linden Feb 2 at 3:53
@ChuckvanderLinden When I am writing my classes, I put more thought into it than I did here (so little info). I make sure it's not a duplicate like class can be, or a dynamic identifier like ID's/indexes are. In this case, I was wondering why he chose a dynamic identifier. – Dave McNulla Feb 2 at 7:27
there is only one checkbox on this page and the html above is the same for the checkbox. The only thing that is changing is the value.... 0 for unchecked 1 of checked. I added 0 and 1 in my excel spreadsheet. I tried using "class" and "name" for my identifier. – mike Feb 2 at 13:40
show 7 more comments
feedback

1 Answer

up vote 1 down vote accepted

Please review the watir checkbox documentation. in that case you can checkbox.set or checkbox.clear depending on your goals.

You want to use something that is unique, and consistent/predictable to select elements

checkbox_class = worksheet.cells(rows,"A").value
puts 'retrieved checkbox_class from spreadsheet is:' + checkbox_class #for debugging, make sure you got the correct thing from the spreadsheet
browser.checkbox(:class => checkbox_class).set 

or

checkbox_name = worksheet.cells(rows,"A").value
puts 'retrieved checkbox_name from spreadsheet is:' + checkbox_name #for debugging, make sure you got the correct thing from the spreadsheet
browser.checkbox(:name => checkbox_name).set 
link|improve this answer
edited your answer to expand it a bit, hope you don't mind. – Chuck van der Linden Feb 4 at 0:29
@ChuckvdL I don't mind a bit, especially from a pro like you. – Dave McNulla Feb 4 at 5:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.