/** * 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: one-app-launcher-app-tile. * Represents the one-app-launcher-app-tile Lightning web component. * Access the name, description text, or select a tile. * generated from JSON dist/global/appLauncherAppTile.utam.json * @version 2026-03-09T13:56:35.905Z * @author Salesforce */ export default class AppLauncherAppTile extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the name of the app tile * @return name of the app tile */ getName(): Promise; /** * Selects the app tile * @return none */ select(): Promise; /** * Gets the description of the app tile * @return the description of the app tile */ getDescription(): Promise; }