Hello,
I'm trying to set up rules to fill out a page full of radio buttons. The buttons are arranged in groups of three with the same name but different values. For example:
input type="radio" name="genre_historic" value="y"
input type="radio" name="genre_historic" value="n"
input type="radio" name="genre_historic" value=""
How would I set up a rule to change the selection away from the last one "blank" and onto one of the other two? And to do the same with each group of three buttons? Identifying them by name doesn't work, since there are 3 buttons with the same name. Identifying by value also doesn't work, since the same three values are used throughout the page. How do I identify the button by both name and value?
Thanks.