Kernel::Test::Role::Selenium::Admin::HandlesSystemConfigurationFrontend

NAME

Kernel::Test::Role::Selenium::Admin::HandlesSystemConfigurationFrontend – Role to log handle system configuration frontend.

SystemConfigurationSearch()

Uses the search in the system configuration mask.

    $Self->SystemConfigurationSearch(
        SearchTerm => 'abc',
    );

SystemConfigurationDetailedSearch()

Uses the detailed search in the system configuration mask.

    $Self->SystemConfigurationDetailedSearch(
        SearchTerm => 'abc',
    );

SystemConfigurationEditSetting()

Edit and saves a setting. Currently it's only possible to edit a specific field of the setting.

    $Self->SystemConfigurationEditSetting(
        SettingName       => 'AgentFrontend::CustomerUser::SocialLinks###0001-Framework',
        EditValue         => 'Google',
        EditValueSelector => '#AgentFrontend\:\:CustomerUser\:\:SocialLinks\#\#\#0001-Framework_Array1_Hash\#\#\#Name',
    );
Scroll to Top