@nova-ui/bits
Version:
SolarWinds Nova Framework
12 lines (11 loc) • 445 B
TypeScript
import { ElementArrayFinder, ElementFinder } from "protractor";
import { Atom } from "../../atom";
export declare class MenuPopupAtom extends Atom {
static CSS_CLASS: string;
click: (idx: number) => Promise<void>;
getItemByIndex: (idx: number) => ElementFinder;
getItems(): ElementArrayFinder;
getSelectedItems(): ElementArrayFinder;
getSelectedItem(): ElementFinder;
clickItemByText(title: string): Promise<void>;
}