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: website/docs/chapter-03/02_variables.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Variables can be created and assigned in various ways, such as:
35
35
36
36
(*) These methods are not part of this syllabus.
37
37
38
-
Beside variables created by the user, Robot Framework also supports **Built-in Variables** that are explained in the [5.1.6 Built-In Variables](chapter-05/01_advanced_variables.md#516-built-in-variables) chapter.
38
+
Beside variables created by the user, Robot Framework also supports **Built-in Variables** that are explained in the [5.1.6 Built-In Variables](chapter-05/01_advanced_variables.md#515-built-in-variables) chapter.
Copy file name to clipboardExpand all lines: website/docs/chapter-05/01_advanced_variables.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -305,7 +305,7 @@ As long as a value is iterable, it can be assigned to a list variable using the
305
305
306
306
**Note**: Strings are iterable in Python; however, they are explicitly **NOT** converted to a list when assigned to a list variable to prevent mistakes.
307
307
308
-
### 5.1.4.2 Accessing List Variables
308
+
### 5.1.3.1 Accessing List Variables
309
309
310
310
::::lo[Learning Objectives]
311
311
@@ -343,13 +343,13 @@ This is particularly needed when using FOR-Loops. See [5.2.4 FOR Loops](chapter-
343
343
344
344
345
345
346
-
## 5.1.5 Dict-Like
346
+
## 5.1.4 Dict-Like
347
347
348
348
As explained in the `*** Variables ***` section under [3.2.2.4 Dictionary Variable Definition](chapter-03/02_variables.md#3224-dictionary-variable-definition), Robot Framework natively supports creating dictionaries.
349
349
However, the ampersand-syntax `&{var}` has different meanings when assigning values and when accessing values.
350
350
351
351
352
-
### 5.1.5.1 Assigning Dictionary Variables
352
+
### 5.1.4.1 Assigning Dictionary Variables
353
353
354
354
::::lo[Learning Objectives]
355
355
@@ -375,7 +375,7 @@ Test Dictionary Variables
375
375
In the following example, the first assignment to `&{participant}` causes an automatic conversion to a Robot Framework Dictionary, also known as DotDict. These special dictionary types can be accessed using dot-access like `${participant.name}` or `${participant.age}`, instead of the usual dictionary access like `${trainer}[name]` or `${trainer}[age]`.
376
376
377
377
378
-
### 5.1.5.2 Accessing Dictionary Variables
378
+
### 5.1.4.2 Accessing Dictionary Variables
379
379
380
380
::::lo[Learning Objectives]
381
381
@@ -417,7 +417,7 @@ The dictionary keys act as the argument names and the values as the argument val
0 commit comments