02-Robot Framework教程-用户自定义关键字(二)


1. 关键字分类

  1. 系统关键字
  2. 用户自定义关键字

2. 用户自定义关键字创建代码如下:

#--START--
*** Settings ***

*** Variables ***

*** Test Cases ***
HelloRobot
   [Documentation]    Hello Robot
   Log    " Save this message robot"
   myfunction

*** Keywords ***
myfunction
  Log To Console   "This is my console message"


#--END--

以上代码的 myfunction 就是用户自定义关键字

3. 输出结果

==============================================================================
Test                                                                          
==============================================================================
HelloRobot :: Hello Robot                                             ."This is my console message"
HelloRobot :: Hello Robot                                             | PASS |
------------------------------------------------------------------------------
Test                                                                  | PASS |
1 critical test, 1 passed, 0 failed
1 test total, 1 passed, 0 failed
==============================================================================