From 962ff37ffdfae4ce7576683551839f7ef8c1ecb4 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Tue, 2 Aug 2022 23:53:07 -0300 Subject: [PATCH] Update chapter-05-gbdialog-reference.md --- book/chapter-05-gbdialog-reference.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/book/chapter-05-gbdialog-reference.md b/book/chapter-05-gbdialog-reference.md index b78d976d..3c7fd8fc 100644 --- a/book/chapter-05-gbdialog-reference.md +++ b/book/chapter-05-gbdialog-reference.md @@ -52,7 +52,8 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | * SET page, cssSelector, value | Define an field to value eg. "value 123" on the webpage specified by selector eg. "#id". | | * CLICK page, cssSelector | Clicks on an element inside the web page being automated by General Bots. | | * file = DOWNLOAD _url_ | | -|NEW OBJECT| Creates a new object to be used with REST calls for example.
```data = NEW OBJECT
data.color = "blue"``` | +|NEW OBJECT| Creates a new object to be used with REST calls for example.
```data = NEW OBJECT```
```data.color = "blue"``` | +|NEW ARRAY| Creates a new array.
```data = NEW ARRAY```
```data[0] = "blue"``` | * = Work in progress.