nightwatch
Version:
Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.
29 lines (25 loc) • 908 B
JavaScript
const ProtocolAction = require('./_base-action.js');
/**
* Change focus to another frame on the page. If the frame id is missing or null, the server should switch to the page's default content.
*
* @example
* this.demoTest = function (browser) {
* browser.frame('<ID>', function(result) {
* console.log(result);
* });
* }
*
* @link /#switch-to-frame
* @param {string|number|null} [frameId] Identifier for the frame to change focus to.
* @param {function} [callback] Optional callback function to be called when the command finishes.
* @api protocol.frames
*/
module.exports = class Session extends ProtocolAction {
command(frameId, callback) {
if (arguments.length === 1 && typeof frameId === 'function') {
callback = frameId;
return this.transportActions.switchToFrame(callback);
}
return this.transportActions.switchToFrame(frameId, callback);
}
};