NAME
YuiRestClient - Perl module to interact with YaST applications via libyui-rest-api.
DESCRIPTION
See documentation of the libyui-rest-api project. for more details about server side implementation.
SYNOPSIS
use YuiRestClient;
use constant API_VERSION => 'v1';
my $app = YuiRestClient::App->new({
port => $port,
host => $host,
api_version => API_VERSION
});
$app->check_connection();
my $btn = $app->button({id => 'btn_ok'});
$btn->click();
INSTALLATION
To manually install the package run following commands:
perl Makefile.pl
make manifest
make install
To generate tarball, execute make dist
command. This command will also generate README file and update README.pod file.
LICENSE
The perl module is available as open source under the terms of the MIT License.