diff --git a/src/02_commands/03_Navigation/05_Refresh.jl b/src/02_commands/03_Navigation/05_Refresh.jl index 09f1f4d..a2ccf9e 100644 --- a/src/02_commands/03_Navigation/05_Refresh.jl +++ b/src/02_commands/03_Navigation/05_Refresh.jl @@ -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