wix-style-react
Version:
wix-style-react
18 lines (17 loc) • 416 B
JavaScript
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;