/** * 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: .oneConsoleTabItem. * Represents the one:consoleTabItem Lightning web component. * Access the title. Select or close the tab. * generated from JSON dist/navex/consoleTabItem.utam.json * @version 2026-03-09T13:56:36.464Z * @author Salesforce */ export default class ConsoleTabItem extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the title text * @return the title text */ getTitle(): Promise; /** * Click the close tab button * @return none */ closeTab(): Promise; /** * Select a tab by clicking * @return none */ selectTab(): Promise; }