/** * 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'; /** * Selector: .fieldLevelErrors .errorsList. * Represents the force:inputPicklist Aura component. * Click the error link and get the error text. * generated from JSON dist/force/pageError.utam.json * @version 2026-03-09T13:56:35.868Z * @author Salesforce */ declare class PageError extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Clicks the anchor link for the error. */ click(): Promise; /** * Gets the text of the error * @return the text of the error */ getErrorText(): Promise; } export = PageError;