我是茄子功能新手。没有找到任何使用茄子功能更新csv的参考。
参考:http://docs.testplant.com/ePF/using/epf-accessing-data-cell-by-name.htm
答案 0 :(得分:0)
您可以像这样读入和读出文件,编辑CSV与其他文本文件相同。
将文件读入变量:
put file "/etc/passwd" into passwordInfo
将变量写入文件:
put "0,0,0,0" into file "/tmp/testing/counters"
我要做的是在你的CSV中读取并复制到一个新变量,然后输出它。移动到文件中的特定行是非常有用的语法。例如,如果要增加文件“计数器”第一行的第二列,可以使用: 将1添加到文件“/ tmp / testing / counters”
的第1行的第2项所有这些以及更多内容都在"File and Folder Interaction" provided on the Eggplant website.
中