import { WebElement } from "selenium-webdriver"; import { TreeSection } from "../TreeSection"; import { CustomTreeItem } from "../custom/CustomTreeItem"; export declare class VariableSectionItem extends CustomTreeItem { constructor(element: WebElement, viewPart: TreeSection); /** * Get name of the variable. * @returns a promise resolving to variable name string */ getVariableName(): Promise; /** * Get value of the variable. * @returns a promise resolving to value string of the variable */ getVariableValue(): Promise; /** * Get variable name tooltip. * @returns a promise resolving to variable name tooltip string */ getVariableNameTooltip(): Promise; /** * Get variable value tooltip. * @returns a promise resolving to variable value tooltip string */ getVariableValueTooltip(): Promise; getLabel(): Promise; getTooltip(): Promise; /** * Assign new value to the variable. * @param value new value */ setVariableValue(value: string): Promise; }