You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
375 B

local err
print("BEFORE JSON LOADING payload: " .. json_payload)
local json = require("json")
print("AFTER JSON LOADING")
-- Parse the JSON string
local obj, err = json.decode(json_payload)
print("Por abrir pagina de loading")
print(obj)
print("ese fue el json payload")
err = navigate("https://www.bot-bunny.com/loading")
if err then
print(err)
return
end
waitSecs(5)