Kernel::Test::Role::Selenium::Agent::HandlesBusinessObjectPropertyCards

NAME

Kernel::Test::Role::Selenium::Agent::HandlesBusinessObjectPropertyCards – role to handle property cards.

PropertyCardIsDisplayed()

Checks if a property card is displayed.

    $Self->PropertyCardIsDisplayed(
        PropertyCard   => 'Process',    # required, name of the property card
        ParentSelector => '',           # optional, parent selector of the card, e.g. the widget xpath
    );

PropertyCardCheckContent()

Checks the content of a property card.

    $Self->PropertyCardCheckContent(
        Name           => 'Process',    # required, name of the property card
        ParentSelector => '',           # optional, parent selector of the card, e.g. the widget
        Content        => '123',        # required, content which is used for the check
        ValueClass     => '',           # optional, class name of the element which displays the value
    );

Returns

PropertyCardCheckInlineEditing()

Checks if the inline editing for a specified property card is active or not.

    $Self->PropertyCardCheckInlineEditing(
        Name           => '',  # name of the property card
        Active         => 0|1, # default 1,
        ParentSelector => '',  # optional,  parent selector of the card, e.g. the widget
    );

PropertyCardActivateInlineEditing()

Activates the inline editing for the specified property card.

    $Self->PropertyCardActivateInlineEditing(
        Name           => '', # name of the property card
        ParentSelector => '', # optional, parent selector of the card, e.g. the widget
    );

PropertyCardSaveInlineEditing()

Saves the inline editing form for the specified property card.

    $Self->PropertyCardSaveInlineEditing(
        Name           => '', # name of the property card
        ParentSelector => '', # optional, parent selector of the card, e.g. the widget
    );
Scroll to Top