1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||
|
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) |
||||
Loading…
Reference in new issue