I receive in my function the name and the status (value) and with that i want to set one of the radio button.

I'm trying do do something like this but is not accepting

r = $browser.input(:name => number).parent.radio :value => status
r.set

the html of the radio buttons is this

<input id="1" type="radio" checked="checked" value="activo" name="b1" onclick="oncheckRadio();" tabindex="7">    
<input id="1" type="radio" value="inactivo" name="b1" onclick="oncheckRadio();" tabindex="8">
link|improve this question

2  
Your developers are producing invalid HTML, you have ID values that are not unique.. you should file a bug on that. – Chuck van der Linden Nov 3 '11 at 17:41
feedback

1 Answer

up vote 3 down vote accepted

I'm not entirely following the business logic of this, but here's some abductive reasoning for you (a guess)

def set_radio_by_name_and_status(name, status)
    $browser.radio(:name => name, :status => status).set
end

However, both radio buttons are named "b1" so setting by name seems a little redundant. I presume you meant the name and status of the radio button.

link|improve this answer
Tanks, i didn't know that we can various elements inside the bracelets – macwadu Nov 3 '11 at 17:16
@macwadu You can, as long as you use the => symbol and seperate with commas (you are basically providing a hash argument to the radio method) – kinofrost Nov 3 '11 at 17:19
Since those are also 'wired' to react to onclick, you may want to fire that event after setting them if the UI does not seem to be responding the same way it does when you interact with it manually. – Chuck van der Linden Nov 3 '11 at 17:44
feedback

Your Answer

 
or
required, but never shown

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