I would like to append data to .csv file which is not empty in Robot Framework now, but I meet some questions.
I installed CSVLibrary from 's4int' of 'robotframework-CSVLibrary' in github and it has a keyword named 'Append To Csv File'. I can append data into .csv file but there are some issues with the format.
First I have an empty csv file and I run my scripts in Robot Framework.
*** Settings ***
Library Selenium2Library
Library CSVLibrary
*** Variables ***
*** Test Cases ***
test
${list}= Create List apple pear
Append To Csv File ${file_path} ${list}
The file is looked like this:

But I expect is:
!
How can I append data to show like what I expect? Is my format wrong? Or is there any other way to realize it? Thanks a lot.
Append To Csv File ${file_path} @{list}?