/** * 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 _RecordForm from 'salesforce-pageobjects/setup/pageObjects/recordForm'; import _AgenticCard from 'salesforce-pageobjects/setup/pageObjects/agenticCard'; /** * Component that wraps setup-record-form and handles mode-based configuration with expandable rendition support. * Selector: setup-agentic-record-form * generated from JSON dist/setup/agenticRecordForm.utam.json * @version 2026-03-09T13:56:36.959Z * @author Salesforce */ export default class AgenticRecordForm extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the agentic card wrapper is present and visible (agentic card mode) * @return boolean */ isSetupAgenticCardVisible(): Promise; /** * Check if the agentic record form container is present and visible * @return boolean */ isAgenticRecordFormContainerVisible(): Promise; waitForSetupRecordForm(): Promise<_RecordForm>; /** * Represents the agentic card wrapper when agentic card mode is enabled */ getSetupAgenticCard(): Promise<_AgenticCard | null>; /** * Setup record form (slot content) when agentic card mode is enabled */ getSetupRecordForm(): Promise<_RecordForm | null>; }