UNPKG

taiko

Version:

Taiko is a Node.js library for automating Chromium based browsers

22 lines (20 loc) 676 B
const { match } = require("../elementSearch"); const { getElementGetter } = require("./helper"); const ElementWrapper = require("./elementWrapper"); /** * Behaves the same as ElementWrapper * Represents HTML [`a`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a) tag. * @extends {ElementWrapper} */ class LinkWrapper extends ElementWrapper { constructor(attrValuePairs, _options, ...args) { super("Link", "text", attrValuePairs, _options, ...args); this._get = getElementGetter( this.selector, async () => await match(this.selector.label, this._options).elements("a", 0, 0), "a", ); } } module.exports = LinkWrapper;