@freelancercom/blue-harvest
Version:
protractor helpers
15 lines • 808 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TAB = exports.ENTER = exports.CLEAR = void 0;
/**
* Keys and key combinations commonly used in Pantheon tests. Most of these
* are direct exports from protractor.Keys, and in most cases users should
* grab keys directly from there instead of adding new exports to this file.
*/
const protractor_1 = require("protractor");
exports.CLEAR = protractor_1.protractor.Key.CONTROL + protractor_1.protractor.Key.END +
protractor_1.protractor.Key.SHIFT + protractor_1.protractor.Key.HOME +
protractor_1.protractor.Key.NULL /* Release modifier keys. */ + protractor_1.protractor.Key.DELETE;
exports.ENTER = protractor_1.protractor.Key.ENTER;
exports.TAB = protractor_1.protractor.Key.TAB;
//# sourceMappingURL=keys.js.map