# SUSE's openQA tests
#
# Copyright © 2020 SUSE LLC
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
# Maintainer: QE YaST <qa-sle-yast@suse.de>
use strict;
sub select {
my ($self) = @_;
return $self->action(action => YuiRestClient::Action::YUI_SELECT);
}
sub is_selected {
my ($self) = @_;
$self->property('value');
}
1;