/** * 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: lightning-spinner * Represents the lightning-spinner Lightning web component. * Check if the spinner is present. Check if the assistive text present and get the assistive text. * generated from JSON dist/lightning/spinner.utam.json * @version 2026-03-09T13:56:36.235Z * @author Salesforce */ export default class Spinner extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Is lightning-spinner displayed * @return boolean */ isSpinning(): Promise; /** * Checks if the spinner has assisting text present * @return boolean */ hasAssistingText(): Promise; /** * Get spinner assisting text * @return string */ getAssistingText(): Promise; }