Name:Dictionaries Should Be EqualSource:Collections <test library>Arguments:[ dict1 | dict2 | msg=None | values=True ]Fails if the given dictionaries are not equal. First the equality of dictionaries' keys is checked and after that all the key value…
Name:Dictionary Should Contain Sub DictionarySource:Collections <test library>Arguments:[ dict1 | dict2 | msg=None | values=True ]Fails unless all items in `dict2` are found from `dict1`. See `Lists Should Be Equal` for an explanation of `msg`. The…
场景一:msg=None 场景二:自定义msg 场景三:自定义msg和values,且values为布尔类型False或者字符串False和No Values 场景四:自定义msg和values,且values不是布尔类型False或者字符串False和No Values…
Arguments: [ *lists ]Combines the given `lists` together and returns the result. The given lists are not altered by this keyword.   场景1: 场景2:重复数据不去重进行合并…
Name:List Should Not Contain DuplicatesSource:Collections <test library>Arguments:[ list_ | msg=None ]Fails if any element in the `list` is found from it more than once. The default error message lists all the elements that were found from the `list…
Name:Convert To ListSource:Collections <test library>Arguments:[ item ]Converts the given `item` to a list. Mainly useful for converting tuples and other iterable to lists. Use `Create List` from the BuiltIn library for constructing new lists.…
Name:List Should Contain ValueSource:Collections <test library>Arguments:[ list_ | value | msg=None ]Fails if the `value` is not found from `list`. If `msg` is not given, the default error message "b | c does not contain the value 'x'" is…
Name:Sort ListSource:Collections <test library>Arguments:[ list_ ]Sorts the given list in place. The strings are sorted alphabetically and the numbers numerically. Note that the given list is changed and nothing is returned. Use `Copy List` first, i…
Name:Set List ValueSource:Collections <test library>Arguments:[ list_ | index | value ]Sets the value of `list` specified by `index` to the given `value`. Index '0' means the first position, '1' the second and so on. Similarly, '-1' is the last posi…
Name:Reverse ListSource:Collections <test library>Arguments:[ list_ ]Reverses the given list in place. Note that the given list is changed and nothing is returned. Use `Copy List` first, if you need to keep also the original order.…