/** * 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, UtamBasePageObject as _UtamBasePageObject, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _PageBlockSectionView from 'salesforce-pageobjects/force/pageObjects/pageBlockSectionView'; import _PageBlockSectionEdit from 'salesforce-pageobjects/force/pageObjects/pageBlockSectionEdit'; /** * Selector: .runtime_sales_pathassistantPathAssistantBody * Represents the path assistant body. * You can access the buttons by title and edit section. * generated from JSON dist/runtime_sales/pathAssistantBody.utam.json * @version 2026-03-09T13:56:36.884Z * @author Salesforce */ export default class PathAssistantBody extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getBodyHeader(): Promise<(_BaseUtamElement)>; getTitle(): Promise<(_BaseUtamElement)>; getEditPageLink(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getFormViewSection(): Promise<_PageBlockSectionView>; getFormEditSection(): Promise<_PageBlockSectionEdit>; getButtonByTitle(title: string): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getPathAssistantInfo(): Promise<(_BaseUtamElement)>; getPathAssistantKeyFields(): Promise<(_BaseUtamElement)>; }