You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-11
Original file line number
Diff line number
Diff line change
@@ -20,19 +20,21 @@ Gobot is a powerful stateful API testing robot. It provides a graphical interfac
20
20
21
21
## Feature
22
22
23
-
*Use the `behavior tree` to control the running order of the robot, and use the `script` to control the specific behavior of the node (such as making an http request
24
-
*SuProvides graphical editing and debugging capabilities
25
-
*You can `prefab` template nodes in the configuration page, and `reuse` the nodes in the editor
26
-
*It can be driven by http `api` (`post /bot.run -d '{"Name":"a robot"}'` can be easily integrated into CI
*Offers 'stress testing' with configurable concurrency settings on the configuration page.
29
29
30
30
31
31
## NodeScript
32
32
> Through built-in modules and scripts, we can have rich logical expression capabilities. We can also use global (single bot) meta structures to maintain various state changes of the bot.
33
33
```lua
34
34
--[[
35
-
Each node has its own independent .lua script. When the node is executed, dostring will be called to load and run this script.
35
+
Each node has its own independent .lua script for execution. When a node is executed, the script is loaded and run using dostring.
36
+
Users can load desired 'modules' into the script for additional functionalities. For more information, refer to the documentation.
37
+
The script allows defining node execution logic, like sending an HTTP request.
36
38
]]--
37
39
38
40
-- Users can load "modules" they want to use in the script.
0 commit comments