UNPKG

playwright-dompath

Version:

Retrieve xpath and css selector paths from ElementHandle and Locator objects in Playwright

4 lines (3 loc) 265 B
import { ElementHandle, Locator } from "playwright"; export declare const cssPath: (elHandle: ElementHandle | Locator, optimized?: boolean) => Promise<string>; export declare const xPath: (elHandle: ElementHandle | Locator, optimized?: boolean) => Promise<string>;