/** * 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 _ExplorerTreeGrid from 'salesforce-pageobjects/dev/workspace/pageObjects/explorerTreeGrid'; /** * Component that displays a tree grid for workspace's metadata files and folders, allowing for selection and various actions on the rows. * Selector: dev_workspace-explorer-body * generated from JSON dist/dev/workspace/explorerBody.utam.json * @version 2026-03-09T13:56:35.171Z * @author Salesforce */ export default class ExplorerBody extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the tree grid container is visible * @return boolean */ isTreeGridContainerVisible(): Promise; /** * Returns true if element "checkboxColumn" present on the page * @return boolean */ verifyCheckboxColumnPresence(): Promise; /** * Represents the custom tree grid component used to display data. */ getExplorerTreeGrid(): Promise<_ExplorerTreeGrid>; }