/** * 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 _PageBlockItemView from 'salesforce-pageobjects/force/pageObjects/pageBlockItemView'; /** * Selector: .forcePageBlockSectionView. * Represents the force:pageBlockSectionView Aura component. * Get the force:pageBlockItemView component or the inline edit button. * generated from JSON dist/force/pageBlockSectionView.utam.json * @version 2026-03-09T13:56:35.866Z * @author Salesforce */ export default class PageBlockSectionView extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getPageBlockSectionRow(index: number): Promise<(_BaseUtamElement)>; getItemView(index: number): Promise<_PageBlockItemView>; getInlineEditButton(title: string): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }