/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _Breadcrumbs from 'salesforce-pageobjects/lightning/pageObjects/breadcrumbs'; import _Breadcrumb from 'salesforce-pageobjects/lightning/pageObjects/breadcrumb'; /** * Component that serves as a layout for Salesforce Studio pages, including a header with breadcrumbs and slots for additional content. * Selector: setup_platform_unifiedapp-salesforce-studio-page-layout * generated from JSON dist/applications/salesforceStudioPageLayout.utam.json * @version 2026-03-09T13:56:34.953Z * @author Salesforce */ export default class SalesforceStudioPageLayout extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Checks if the studio component is visible * @return boolean */ isStudioComponentVisible(): Promise; /** * Returns the class attribute of the studio component * @return string */ getStudioComponentClass(attrName: string): Promise; getRoot(): Promise<(_BaseUtamElement)>; /** * Represents the breadcrumbs container, which is conditional. */ getBreadcrumbs(): Promise<_Breadcrumbs | null>; /** * Represents individual breadcrumb items, which are repeated for each breadcrumb. */ getBreadcrumbItem(): Promise<_Breadcrumb[] | null>; /** * Represents the page header with title, icon, and description. */ getPageHeader(): Promise<(_BaseUtamElement)>; /** * Represents the content of the named slot for the right side of the header. */ getRightHeaderSlotContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the named slot for the onboarding banner. */ getOnboardingBannerContent(ContainerCtor: _ContainerCtor): Promise; /** * Represents the content of the named slot for the main page content. */ getPageContentSlot(ContainerCtor: _ContainerCtor): Promise; }