/** * 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, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Component that displays organization details such as name, and provides navigation links to the home and setup pages of the organization. * Selector: setup_platform_unifiedapp-org-details * generated from JSON dist/applications/orgDetails.utam.json * @version 2026-03-09T13:56:34.931Z * @author Salesforce */ export default class OrgDetails extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click on the home page link */ clickHomeLink(): Promise; /** * Click on the setup page link */ clickSetupLink(): Promise; /** * Get the text of the organization name * @return string */ getOrgNameText(): Promise; /** * Check if the organization details card is visible * @return boolean */ isOrgDetailsCardVisible(): Promise; /** * Check if the organization label is visible * @return boolean */ isOrgLabelVisible(): Promise; /** * Check if the organization name is visible * @return boolean */ isOrgNameVisible(): Promise; /** * Check if the home page link is visible * @return boolean */ isHomeLinkVisible(): Promise; /** * Check if the setup page link is visible * @return boolean */ isSetupLinkVisible(): Promise; /** * Check if the link separator is visible * @return boolean */ isLinkSeparatorVisible(): Promise; waitForOrgDetailsCard(): Promise<(_BaseUtamElement)>; waitForOrgLabel(): Promise<(_BaseUtamElement)>; waitForOrgName(): Promise<(_BaseUtamElement)>; waitForHomeLink(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; waitForSetupLink(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; waitForLinkSeparator(): Promise<(_BaseUtamElement)>; getRoot(): Promise<(_BaseUtamElement)>; }