UNPKG

webdriverio-workflo

Version:

This is a customized version of webdriverio for use with workflo framework.

21 lines (19 loc) 378 B
/** * * 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' }) }