@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
23 lines (20 loc) • 403 B
JavaScript
/**
*
* Open the notifications pane on the device.
*
* <example>
:openNotificationsSync.js
browser.openNotifications();
* </example>
*
* @type mobile
* @for android
*
*/
let openNotifications = function () {
return this.requestHandler.create({
path: '/session/:sessionId/appium/device/open_notifications',
method: 'POST'
})
}
export default openNotifications