@syncfusion/ej2-buttons
Version:
A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch.
54 lines (53 loc) • 2.2 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 RadioButtonHelper = (function (_super) {
__extends(RadioButtonHelper, _super);
function RadioButtonHelper(id, wrapperFn) {
var _this = _super.call(this) || this;
_this.id = id;
if (wrapperFn !== undefined) {
_this.wrapperFn = wrapperFn;
}
return _this;
}
RadioButtonHelper.prototype.getElement = function () {
return this.selector('#' + this.id);
};
RadioButtonHelper.prototype.setModel = function (property, value) {
var cy;
return cy.get('#' + this.id).then(function (ele) {
return ele[0].ej2_instances[0][property] = value;
});
};
RadioButtonHelper.prototype.getModel = function (property) {
var cy;
return cy.get('#' + this.id).then(function (ele) {
return ele[0].ej2_instances[0][property];
});
};
RadioButtonHelper.prototype.invoke = function (fName, args) {
if (args === void 0) { args = []; }
var cy;
return cy.get('#' + this.id).then(function (ele) {
var inst = ele[0].ej2_instances[0];
return inst[fName].apply(inst, args);
});
};
return RadioButtonHelper;
}(e2e_1.TestHelper));
exports.RadioButtonHelper = RadioButtonHelper;
});