UNPKG

wix-style-react

Version:
18 lines (17 loc) 416 B
var TextLinkDriverFactory = function TextLinkDriverFactory(component) { return { exists: function exists() { return !!component; }, click: function click() { return component.click(); }, getTextContent: function getTextContent() { return component.getText(); }, element: function element() { return component; } }; }; export default TextLinkDriverFactory;