The Refresh command of the WebDriver API reloads the current page in the active browsing context. This is equivalent to clicking the browser's reload button or calling Location.reload() in JavaScript.
| Method | URI template |
|---|---|
POST | /session/{session id}/refresh |
session idIdentifier of the session.
null if successful.
invalid session idSession does not exist.
no such windowThe window object has been discarded, indicating that the tab or window has been closed.
unexpected alert openA modal dialog was open, blocking this operation.
With a WebDriver server running on localhost:4444, assume an active session has navigated to a page. To reload the current page, use the refresh command, replacing ID with the sessionId from the New Session response:
curl -i -H "Content-Type: application/json" -d '{}' http://localhost:4444/session/ID/refreshThe server responds with a null value to indicate success:
HTTP/1.1 200 OK
content-type: application/json; charset=utf-8
{"value":null}