RF关键字语法

作者: 测试小懒 | 来源:发表于2019-07-01 20:58 被阅读0次

    前言

    robotframework是一款通用的测试自动化测试框架,主要用于验收测试和ATDD验收测试驱动开发。他是一款关键字驱动框架,下面为他的关键字语法。

    先来一张他的结构图

    1.定义变量

    variable

    ${a}    Set variable hello world

    log  ${a}

    2.定义列表

    list

    ${abc}  Create List    a    b    a

    log  ${abc}

    3.链接字符串

    catenate

    ${hi}    Catenate      hello      world

    log    ${hi}

    4.时间关键

    time

    ${t}    get time

    log    ${t}

    sleep  5

    ${t}    get time

    log    ${t}

    5.if分支

    ${a}    Set  variable    70

    run keyword if    ${a}>=90    log  优秀

    ...      ELSE IF  ${a}>=70    log    良好

    ...      ELSE IF  ${a}>=60    log    及格

    ...      ELSE      log            不及格

    相关文章

      网友评论

        本文标题:RF关键字语法

        本文链接:https://www.haomeiwen.com/subject/idhncctx.html