UNPKG

appium-mac2-driver

Version:

XCTest-based Appium driver for macOS apps automation

18 lines 647 B
import _ from 'lodash'; /** * Calculates the path to the current module's root folder * * @returns The full path to module root * @throws If the current module root folder cannot be determined */ export declare const getModuleRoot: (() => string) & _.MemoizedFunction; /** * Retrieves process ids of all the children processes created by the given * parent process identifier * * @param parentPid parent process ID * @returns the list of matched children process ids * or an empty list if none matched */ export declare function listChildrenProcessIds(parentPid: number | string): Promise<string[]>; //# sourceMappingURL=utils.d.ts.map