2014-11-21 39 views

回答

1

當致電Combine Lists時,您必須將列表作爲標量變量 - 使用$而不是@。當您使用@時,機器人將在之前擴大名單,調用您不想要的關鍵字。

*** Settings *** 
| Library | Collections 

*** Variables *** 
| @{x} | ABC 
| @{Y} | Donkey 

*** Test Cases *** 
| Example of combining lists 
| | @{expected}= | Create List | ABC | Donkey 
| | @{Z}= | Combine lists | ${X} | ${Y} 
| | # notice use of $: ^ ^
| | Lists should be equal | ${Z} | ${expected} 
+0

完美,謝謝。 – 2014-11-24 08:21:52