Name:Log DictionarySource:Collections <test library>Arguments:[ dictionary | level=INFO ]Logs the size and contents of the `dictionary` using given `level`. Valid levels are TRACE, DEBUG, INFO (default), and WARN. If you only want to log the size, u…
Name:Keep In DictionarySource:Collections <test library>Arguments:[ dictionary | *keys ]Keeps the given `keys` in the `dictionary` and removes all other. If the given `key` cannot be found from the `dictionary`, it is ignored.…
Name: Copy DictionarySource:Collections <test library>Arguments:[ dictionary ]Returns a copy of the given dictionary. The given dictionary is never altered by this keyword.…
Name:Set To DictionarySource:Collections <test library>Arguments:[ dictionary | *key_value_pairs ]Adds the given `key_value_pairs` to the `dictionary`. 增加的键值对都是放在字典的最前面.…
Name:Remove From DictionarySource:Collections <test library>Arguments:[ dictionary | *keys ]Removes the given `keys` from the `dictionary`. If the given `key` cannot be found from the `dictionary`, it is ignored. 场景1: 场景2:…
Name:Get From DictionarySource:Collections <test library>Arguments:[ dictionary | key ]Returns a value from the given `dictionary` based on the given `key`. If the given `key` cannot be found from the `dictionary`, this keyword fails. The given dict…
Name:Get Dictionary ValuesSource:Collections <test library>Arguments:[ dictionary ]Returns values of the given dictionary. Values are returned sorted according to keys. The given dictionary is never altered by this keyword.…
Name:Get Dictionary KeysSource:Collections <test library>Arguments:[ dictionary ]Returns `keys` of the given `dictionary`. `Keys` are returned in sorted order. The given `dictionary` is never altered by this keyword.…
Name:Get Dictionary ItemsSource:Collections <test library>Arguments:[ dictionary ]Returns items of the given `dictionary`. Items are returned sorted by keys. The given `dictionary` is not altered by this keyword.…
Name:Dictionary Should Not Contain ValueSource:Collections <test library>Arguments:[ dictionary | value | msg=None ]Fails if `value` is found from `dictionary`. See `List Should Contain Value` for an explanation of `msg`. The given dictionary is nev…