import { WebElement } from "selenium-webdriver"; import { TreeSection } from "../TreeSection"; import { CustomTreeItem } from "../custom/CustomTreeItem"; import { SectionBreakpoint } from "./SectionBreakpoint"; export declare class BreakpointSectionItem extends CustomTreeItem { constructor(element: WebElement, viewPart: TreeSection); /** * Get breakpoint element which has context menu. * @returns SectionBreakpoint page object */ getBreakpoint(): Promise; /** * Get status of the breakpoint. * @returns boolean indicating status */ isBreakpointEnabled(): Promise; /** * Change breakpoint status to desired state. * @param value new state */ setBreakpointEnabled(value: boolean): Promise; getLabel(): Promise; /** * Get breakpoint file path. Empty string is returned if path is not specified. * @returns file path of breakpoint or empty string */ getBreakpointFilePath(): Promise; /** * Get line number of the breakpoint. * @returns number indicating line position in file */ getBreakpointLine(): Promise; }