/**
 * The standard locator types.
 * See https://w3c.github.io/webdriver/#locator-strategies.
 */
export type LocatorTypes = "xpath" | "tag name" | "css selector" | "link text" | "partial link text";
