/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Component that displays organization information and allows interaction with soup ingredients by drag and drop. * Selector: src-soup * generated from JSON dist/devops/center/orgInfo.utam.json * @version 2026-03-09T13:56:35.219Z * @author Salesforce */ export default class OrgInfo extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Retrieves the text of the organization info title * @return string */ getOrgInfoTitleText(): Promise; /** * Retrieves the text of the sandbox name if available * @return string */ getSandboxNameText(): Promise; /** * Checks if the loading text is visible * @return boolean */ isLoadingTextVisible(): Promise; /** * Returns true if element "sandboxNameText" present on the page * @return boolean */ verifySandboxNameTextPresence(): Promise; /** * Returns true if element "loadingText" present on the page * @return boolean */ verifyLoadingTextPresence(): Promise; }