forked from enviPath/enviPy
Current Dev State
This commit is contained in:
27
static/js/ketcher2/node_modules/webdriverio/lib/protocol/launch.js
generated
vendored
Normal file
27
static/js/ketcher2/node_modules/webdriverio/lib/protocol/launch.js
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
/**
|
||||
*
|
||||
* Launch the session for the desired capabilities. Note that this is the companion
|
||||
* to the `autoLaunch=false` capability. This is not for launching arbitrary
|
||||
* apps/activities --- for that use [`startActivity`](/api/mobile/startActivity.html).
|
||||
* This is for continuing the initialization ("launch") process if you have used
|
||||
* `autoLaunch=false`.
|
||||
*
|
||||
* <example>
|
||||
:launch.js
|
||||
it('should launch capability', function () {
|
||||
browser.launch();
|
||||
});
|
||||
* </example>
|
||||
*
|
||||
* @see https://github.com/appium/appium/blob/master/docs/en/writing-running-appium/appium-bindings.md#launch
|
||||
* @type mobile
|
||||
* @for ios, android
|
||||
*
|
||||
*/
|
||||
|
||||
export default function launch () {
|
||||
return this.requestHandler.create({
|
||||
path: '/session/:sessionId/appium/app/launch',
|
||||
method: 'POST'
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user