Index: openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl,v diff -u -r1.79.2.54 -r1.79.2.55 --- openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl 7 Sep 2021 14:52:23 -0000 1.79.2.54 +++ openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl 28 Jan 2022 17:19:35 -0000 1.79.2.55 @@ -1917,6 +1917,13 @@ foreach n [$node selectNodes $xpath//input] { set name [get_name_attribute $n $xpath//input] if {$name eq ""} continue + + # Do not consider unchecked radio buttons as values + if {[$n getAttribute type ""] eq "radio" && + ![$n hasAttribute checked]} { + continue + } + #ns_log notice "aa_xpath::get_form_values from $className input node $n name $name:" if {[$n hasAttribute value]} { set value [$n getAttribute value]