Type Alias: XPathSelector
XPathSelector =
Brand<string,"XPathSelector">
Defined in: src/core/types/branded.ts:119
An XPath expression string (e.g., '//button[@id="submit"]').
Example​
import type { XPathSelector } from '#core/types/branded.js';
function findByXPath(xpath: XPathSelector): void { }