http://robotframework.org/robotframework/latest/libraries/Collections.html
1. 创建列表 Create List
2. Append To List: Adds values to the end of list. 向列表的末尾追加元素
3.Combine Lists 合并两个列表,并返回合并后的结果
4.Copy List 复制一个列表
5.Get From List 从列表中取值
6.Get Index From List 返回给定值得索引
6.Get Slice From List 数组切片
7.Insert Into List 往list中插入数值
8.Remove From List 根据索引移除列表中的值
9.Remove Values From List 根据values移除列表里面的值
10.Reverse List 倒转列表
11.Set List Value 更新列表中的某一个值
12.Sort List 列表排序
*字典操作:
${dict} Create Dictionary a 1 b 2
${item} Get Dictionary Items ${dict}
log ${item}
${key} Get Dictionary Keys ${dict}
log ${key}
${value} Get Dictionary Values ${dict}
log ${value}
${v} Get From Dictionary ${dict} b
log ${v}