UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

18 lines (14 loc) 335 B
/** * * get informations about the current network connection (Data/WIFI/Airplane) * * @type appium * */ module.exports = function getNetworkConnection() { var requestOptions = { path: '/session/:sessionId/network_connection', method: 'GET' }; return this.requestHandler.create(requestOptions); };