@testim/testim-cli
Version:
Command line interface for running Testing on you CI
15 lines (14 loc) • 305 B
JavaScript
/**
*
* Retrieve a list of all window handles available in the session.
*
* @returns {String[]} a list of window handles
* @uses protocol/windowHandles
* @type window
*
*/
module.exports = function getTabIds () {
return this.unify(this.windowHandles(), {
extractValue: true
});
};