UNPKG

webdriverio-workflo

Version:

This is a customized version of webdriverio for use with workflo framework.

21 lines (19 loc) 424 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = source; /** * * Get the current page source. * * @return {String} The current page source. * * @see https://w3c.github.io/webdriver/webdriver-spec.html#get-page-source * @type protocol * */ function source() { return this.requestHandler.create('/session/:sessionId/source'); } module.exports = exports['default'];