@syncfusion/ej2-buttons
Version:
A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch.
43 lines (42 loc) • 1.79 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ChipsHelper = (function (_super) {
__extends(ChipsHelper, _super);
function ChipsHelper(id, wrapperFn) {
var _this = _super.call(this) || this;
_this.id = id;
if (wrapperFn !== undefined) {
_this.wrapperFn = wrapperFn;
}
return _this;
}
ChipsHelper.prototype.getElement = function () {
return this.selector('#' + this.id);
};
ChipsHelper.prototype.getFocusedChip = function () {
return this.selector("#" + this.id + " > div.e-chip.e-focused");
};
ChipsHelper.prototype.getActiveChip = function () {
return this.selector("#" + this.id + " > div.e-chip.e-active");
};
ChipsHelper.prototype.getNthChip = function (nthItem) {
return this.selector("#" + this.id + " > div:nth-child(" + nthItem + ")");
};
return ChipsHelper;
}(e2e_1.TestHelper));
exports.ChipsHelper = ChipsHelper;
});