@salesforce/salesforcedx-vscode-test-tools
Version:
Test automation framework for Salesforce Extensions for VS Code
9 lines (8 loc) • 436 B
TypeScript
import { WebElement } from 'vscode-extension-tester';
/**
* Retrieves a status bar item that contains the specified text in its title
* @param title - The text to search for in the status bar item's title
* @returns A WebElement representing the status bar item
* @throws Error if the status bar item is not found after multiple retries
*/
export declare function getStatusBarItemWhichIncludes(title: string): Promise<WebElement>;