Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/02_commands/03_Navigation/05_Refresh.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This command causes the browser to reload the page in the current top-level brow
function refresh!(session::Session)
@unpack addr, id = session
response =
HTTP.post("$addr/session/$id/timeouts", [("Content-Type" => "application/json")])
HTTP.post("$addr/session/$id/refresh", [("Content-Type" => "application/json")])
@assert response.status == 200
nothing
end