UNPKG

donobu

Version:

Create browser automations with an LLM agent and replay them as Playwright scripts.

14 lines 404 B
/** * A handle to an HTML element that has a DONOBU_INTERACTABLE_ATTRIBUTE HTML attribute. */ export type InteractableElement = { /** * The value for this element's DONOBU_INTERACTABLE_ATTRIBUTE. */ readonly donobuAttributeValue: string; /** * A short HTML snippet of the element. */ readonly htmlSnippet: string; }; //# sourceMappingURL=InteractableElement.d.ts.map