/** * 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'; import _ViewComponent from 'salesforce-pageobjects/runtime_copilot_base/pageObjects/viewComponent'; /** * A component designed to display actionable messages, such as prompts, outputs, inputs, and actions associated with a chat feature. It responds to user interactions by dispatching events for actions like hyperlink clicks and action button clicks. * Selector: runtime_copilot_base-message-actionable * generated from JSON dist/runtime_copilot_base/messageActionable.utam.json * @version 2026-03-09T13:56:37.280Z * @author Salesforce */ export default class MessageActionable extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); waitForCitationsRegion(): Promise<_ViewComponent>; /** * Represents the prompt area of the component. */ getPromptRegion(): Promise<_ViewComponent | null>; /** * Represents the output area where messages are displayed. */ getOutputRegion(): Promise<_ViewComponent | null>; /** * Represents the input area for user interaction. */ getInputRegion(): Promise<_ViewComponent>; /** * Represents the action buttons area for user to take actions. */ getActionRegion(): Promise<_ViewComponent | null>; /** * Represents the region that displays citations. */ getCitationsRegion(): Promise<_ViewComponent | null>; }