wdio-custom-commands-matchers
Version:
Custom wdio command and matchers
37 lines (36 loc) • 1.85 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.toHaveInputBorder = toHaveInputBorder;
function toHaveInputBorder() {
const borderColors = {
dark: {
valid: '#75b798',
invalid: '#ea868f',
},
light: {
valid: '#198754',
invalid: '#dc3545',
},
};
browser.addCommand('toHaveInputBorder', function (options) {
return __awaiter(this, void 0, void 0, function* () {
const { mode, type } = options;
const elementClass = yield this.getAttribute('class');
const elementCss = (yield this.getCSSProperty('border-color')).parsed.hex;
const expectedClass = type === 'valid' ? 'is-valid' : 'is-invalid';
const expectedBorderColor = borderColors[mode][type];
if (!elementClass.includes(expectedClass) || elementCss !== expectedBorderColor) {
throw new Error(`Element "${this.selector}" should have border-color "${expectedBorderColor}" and class "${expectedClass}", but got "${elementCss}" and "${elementClass}"`);
}
});
}, true);
}