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

16 lines
288 B
JavaScript

/**
*
* Refresh the current page.
*
* @see https://w3c.github.io/webdriver/webdriver-spec.html#refresh
* @type protocol
*
*/
export default function refresh () {
return this.requestHandler.create({
path: '/session/:sessionId/refresh',
method: 'POST'
})
}