/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, BaseUtamElement as _BaseUtamElement } from '@utam/core'; import _ChatPanelEmptyState from 'salesforce-pageobjects/app_dev_agent/pageObjects/chatPanelEmptyState'; /** * Component that displays a chat panel with dynamic content and handles chat interactions, including immersive chat mode and skeleton loading states. * Selector: app_dev_agent-agentic-shell * generated from JSON dist/app_dev_agent/agenticShell.utam.json * @version 2026-03-09T13:56:34.827Z * @author Salesforce */ export default class AgenticShell extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the main container is present and visible * @return boolean */ isShellContainerVisible(): Promise; /** * Check if the chat panel container is present and visible * @return boolean * @param selectorStr CSS selector parameter */ isChatPanelVisible(selectorStr: string): Promise; /** * Check if the chat panel container is present * @return boolean * @param selectorStr CSS selector parameter */ isChatPanelPresent(selectorStr: string): Promise; /** * Returns true if element "chatPanel" present on the page * @return boolean * @param selectorStr CSS selector parameter */ verifyChatPanelPresence(selectorStr: string): Promise; /** * Represents the runtime Copilot agent shell component * @param selectorStr CSS selector parameter */ getAgenticShell(selectorStr: string, ContainerCtor: _ContainerCtor): Promise; /** * Represents the empty state component for the chat panel */ getChatPanelEmptyState(): Promise<_ChatPanelEmptyState | null>; }