forked from enviPath/enviPy
16 lines
288 B
JavaScript
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'
|
|
})
|
|
}
|