chromium.js 551 B

1234567891011121314
  1. "use strict";
  2. /**
  3. * Custom chromium commands
  4. *
  5. * In this file we define all the custom commands which are part of the chromium API but will probably
  6. * never be part of the webdriver spec or JsonWireProtocol.
  7. */
  8. Object.defineProperty(exports, "__esModule", { value: true });
  9. const helpers_1 = require("./helpers");
  10. exports.chromium = {
  11. sendChromiumCommand: helpers_1.noopFactory('chromium/send_command'),
  12. sendChromiumCommandAndGetResult: helpers_1.noopFactory('chromium/send_command_and_get_result')
  13. };
  14. //# sourceMappingURL=chromium.js.map