找不到名称为“将Csv文件读取到列表”的关键字

时间:2018-07-11 11:18:08

标签: python csv robotframework

我正在使用机器人框架进行自动化,但出现此错误

No keyword with name 'Read Csv File To List' found

这是我的代码:

    *** Settings ***
Library           CSVLibrary
Library           Collections

*** Variables ***
${value_to_find}    Test11

*** Test Cases ***
Test
  [Tags]  regression
    Read file and verify

*** Keywords ***
Read csv and verify
  @{list}=  Read Csv File To List    columdata.csv
  :FOR    ${x}    IN    @{list}
  \    Log  ${x}
  \    Set test variable    ${x}
  \    verify variable
  \    Run keyword if    ${status}    Log to console    found it
  \    Exit For Loop If    ${status}
  Run keyword if    not ${status}    Log to console    found it

我已经安装了CSVLibrary,但是为什么会收到错误消息“找不到名称为“将Csv文件读入列表”的关键字”,谁能帮助我,请问我是Robot Framework的新用户。

0 个答案:

没有答案