/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Button from 'salesforce-pageobjects/lightning/pageObjects/button'; /** * Selector: lst-common-list-pagination. * Represents the optional pagination element of the common list component. * generated from JSON dist/lists/commonListPagination.utam.json * @version 2026-03-09T13:56:36.317Z * @author Salesforce */ export default class CommonListPagination extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if pagination is visible */ isPaginationVisible(): Promise; /** * Click the previous page button */ clickPreviousButton(): Promise; /** * Click the next page button */ clickNextButton(): Promise; /** * Click the first variable page button */ clickFirstPage(): Promise; /** * Click the second variable page button */ clickSecondPage(): Promise; /** * Click the third variable page button */ clickThirdPage(): Promise; getPreviousButton(): Promise<_Button>; getNextButton(): Promise<_Button>; getFirstPageButton(): Promise<_Button>; getSecondPageButton(): Promise<_Button>; getThirdPageButton(): Promise<_Button>; }