From afde32fd135ead71078c9abeb50e2229f0330d3b Mon Sep 17 00:00:00 2001 From: rodley82 Date: Sat, 15 Nov 2025 12:08:09 -0300 Subject: [PATCH] loading --- botbunny_inicio.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 botbunny_inicio.lua diff --git a/botbunny_inicio.lua b/botbunny_inicio.lua new file mode 100644 index 0000000..37567d3 --- /dev/null +++ b/botbunny_inicio.lua @@ -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)