CGI::Test::Form::Widget::Box::Radio - A radio button widget
Contents
Description
This class represents a radio button widget, which may be checked at will by users. All other radio
buttons of the same group are automatically unchecked.
If no radio button is checked initially, "CGI::Test" arbitrarily chooses the first one listed and warns
you via "warn".
The interface is the same as the one described in CGI::Test::Form::Widget::Box.
Any attempt to "uncheck" a radio button will be ignored, and a warning emitted via "carp", to help you
identify the caller.
Name
CGI::Test::Form::Widget::Box::Radio - A radio button widget
See Also
CGI::Test::Form::Widget::Box(3), CGI::Test::Form::Widget::Box::Check(3). perl v5.34.0 2022-06-10 CGI::Test::For...get::Box::Radio(3pm)
Synopsis
# Inherits from CGI::Test::Form::Widget::Box
# $form is a CGI::Test::Form
my @title = $form->radios_named("title");
my ($mister) = grep { $_->value eq "Mr" } @title;
$mister->check if defined $mister;
my $title = $form->radio_by_name("title");
$title->check_tagged("Mr");
