wix-style-react
Version:
wix-style-react
12 lines (11 loc) • 333 B
JavaScript
var statsWidgetDriverFactory = function statsWidgetDriverFactory(component) {
return {
element: function element() {
return component;
},
numberOfStatistics: function numberOfStatistics() {
return component.$$('[data-hook="statistics-item"]').count();
}
};
};
export default statsWidgetDriverFactory;