Table of Contents

Interface IPaginationComponent

Namespace
GroupeIsa.Neos.EndToEndTests.UI.Components
Assembly
GroupeIsa.Neos.EndToEndTests.UI.dll

Provides the functionnalites of the automation of a pagination component.

[AbstractionComponent("pagination-bar")]
public interface IPaginationComponent : IAutomationComponent
Inherited Members

Properties

CanGoToFirstPage

Gets a value indicating whether navigation to the first page is available.

bool CanGoToFirstPage { get; }

Property Value

bool

CanGoToNextPage

Gets a value indicating whether navigation to the next page is available.

bool CanGoToNextPage { get; }

Property Value

bool

CanGoToPreviousPage

Gets a value indicating whether navigation to the previous page is available.

bool CanGoToPreviousPage { get; }

Property Value

bool

Methods

GetCurrentPageNumber()

Gets the current page number.

int GetCurrentPageNumber()

Returns

int

The number of the current page.

GetRecordsByPage()

Gets the number of items displayed per page.

int GetRecordsByPage()

Returns

int

The number of items displayed.

GetTotalRecords()

Gets the total number of Items.

int GetTotalRecords()

Returns

int

The total number of elements of the item.

GoToFirstPage()

Navigates to the first page.

void GoToFirstPage()

GoToNextPage()

Navigates to the next page.

void GoToNextPage()

GoToPreviousPage()

Navigates to the previous page.

void GoToPreviousPage()

SetRecordsByPage(PaginationNumbers)

Changes the number of items displayed per page.

void SetRecordsByPage(PaginationNumbers number)

Parameters

number PaginationNumbers

The new number of items to display per page.