В YUI 3:
var value = Y.one("#test input[name=test1]:checked").get("value");
В YUI 2:
// the null, null, null, true is optional, but returns only the first match
var input = YAHOO.util.Dom.getElementsBy(function (el) {
return (el.name === 'test1' && el.checked);
}, 'input', 'test', null, null, null, true);
var value = input.value;