Files
enviPy-bayer/static/js/ketcher2/node_modules/webdriverio/lib/protocol/openNotifications.js
2025-06-23 20:13:54 +02:00

21 lines
378 B
JavaScript

/**
*
* Open the notifications pane on the device.
*
* <example>
:openNotificationsSync.js
browser.openNotifications();
* </example>
*
* @type mobile
* @for android
*
*/
export default function openNotifications () {
return this.requestHandler.create({
path: '/session/:sessionId/appium/device/open_notifications',
method: 'POST'
})
}