/** * 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, BaseUtamElement as _BaseUtamElement, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Selector: .error-console-panel * Represents the Error Console docking panel * generated from JSON dist/global/errorConsole.utam.json * @version 2026-03-09T13:56:35.925Z * @author Salesforce */ export default class ErrorConsole extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Clicks the minimize button */ clickMinimizeButton(): Promise; /** * Clicks the close button */ clickCloseButton(): Promise; /** * Gets the text of the title for the error panel * @return the text of the title for the error panel */ getPanelTitleText(): Promise; /** * Gets the text of the overflow title for the error panel * @return the text of the overflow title for the error panel */ getOverflowTitleText(): Promise; /** * Gets a value indicating whether the error panel is minimized * @return true if the error panel is minimized; otherwise, false */ isMinimized(): Promise; /** * Gets a value indicating whether the error panel is docked * @return true if the error panel is docked; otherwise, false */ isDocked(): Promise; /** * Gets a value indicating whether the error panel is in the overflow state * @return true if the error panel is in the overflow state; otherwise, false */ isOverflowed(): Promise; /** * Gets a value indicating whether the error panel is transitioning * @return true if the error panel is transitioning; otherwise, false */ isTransitioning(): Promise; /** * Waits for the error panel to end its transition */ waitForTransitionEnd(): Promise; /** * Waits for the error panel to be minimized */ waitForMinimized(): Promise; /** * Waits for the error panel to be docked */ waitForDocked(): Promise; /** * Gets the count of the number of errors in the error panel * @return the count of the number of errors in the error panel */ getErrorCount(): Promise; getContent(): Promise<(_BaseUtamElement)>; getErrorEntries(): Promise<(_BaseUtamElement)[] | null>; }