随笔分类 - RF关键字梳理
摘要:场景一:msg=None 场景二:自定义msg 场景三:自定义msg和values,且values为布尔类型False或者字符串False和No Values 场景四:自定义msg和values,且values不是布尔类型False或者字符串False和No Values
阅读全文
摘要:Name:Remove From DictionarySource:Collections <test library>Arguments:[ dictionary | *keys ]Removes the given `keys` from the `dictionary`. If the giv
阅读全文
摘要:Name:Get From DictionarySource:Collections <test library>Arguments:[ dictionary | key ]Returns a value from the given `dictionary` based on the given
阅读全文
摘要:Name:Get Dictionary ValuesSource:Collections <test library>Arguments:[ dictionary ]Returns values of the given dictionary. Values are returned sorted
阅读全文
摘要:Name:Get Dictionary KeysSource:Collections <test library>Arguments:[ dictionary ]Returns `keys` of the given `dictionary`. `Keys` are returned in sort
阅读全文
摘要:Name:Get Dictionary ItemsSource:Collections <test library>Arguments:[ dictionary ]Returns items of the given `dictionary`. Items are returned sorted b
阅读全文
摘要:Name:Dictionary Should Not Contain ValueSource:Collections <test library>Arguments:[ dictionary | value | msg=None ]Fails if `value` is found from `di
阅读全文
摘要:Name:Dictionary Should Not Contain KeySource:Collections <test library>Arguments:[ dictionary | key | msg=None ]Fails if `key` is found from `dictiona
阅读全文
摘要:Name:Dictionary Should Contain ValueSource:Collections <test library>Arguments:[ dictionary | value | msg=None ]Fails if `value` is not found from `di
阅读全文
摘要:Name:Dictionary Should Contain Sub DictionarySource:Collections <test library>Arguments:[ dict1 | dict2 | msg=None | values=True ]Fails unless all ite
阅读全文
摘要:Name:Dictionary Should Contain KeySource:Collections <test library>Arguments:[ dictionary | key | msg=None ]Fails if `key` is not found from `dictiona
阅读全文
摘要:Name:Dictionaries Should Be EqualSource:Collections <test library>Arguments:[ dict1 | dict2 | msg=None | values=True ]Fails if the given dictionaries
阅读全文
摘要:Name:Convert To ListSource:Collections <test library>Arguments:[ item ]Converts the given `item` to a list. Mainly useful for converting tuples and ot
阅读全文
摘要:Name:Create DictionarySource:Collections <test library>Arguments:[ *key_value_pairs ]
阅读全文
摘要:Arguments: [ *lists ]Combines the given `lists` together and returns the result. The given lists are not altered by this keyword. 场景1: 场景2:重复数据不去重进行合并
阅读全文
摘要:Arguments:[ list_ | *values ]Adds `values` to the end of `list`.
阅读全文
摘要:*** Test Cases ***Timestamp ${time} GET TIME ${secs} GET TIME epoch ${year} GET TIME return year ${yyyy} ${mm} ${dd} GET TIME year,month,day @{time} G
阅读全文
摘要:术语说明: 1、Epoch指的是一个特定的时间:1970-01-01 00:00:00 UTC。 2、国际标准化组织的国际标准ISO 8601是日期和时间的表示方法,格式是 'YYYY-MM-DD hh:mm:ss.mil'。 3、UTC time(称为协调世界时或者世界统一时间):这套时间系统被应
阅读全文
摘要:Variable Should not Exist variable should exist
阅读全文
摘要:1、Exit For Loop If:满足条件时,跳出循环,后面的循环不再执行 2、Continue For Loop If:满足条件时,跳出本次循环,继续执行后面的循环
阅读全文