TestRail - 导入测试用例 XML



用户可以使用 XML 文件一次创建多个测试用例和模块。导入 XML 数据需要两个步骤。

  • XML 文件规则
  • 将文件导入系统

XML 文件规则

创建 XML 文件时,必须考虑以下几点

  • XML 格式应为树状结构。它应以模块、测试用例和子模块开头。

  • XML 格式如下所示

<section>
   <name>Login Functionality<name>
   <description>All test case related to login functionality. Positive and negative test cases</description>
   <case>
      <id>C2</id>
      <title>Correct Username and Passwordcombination</title>
      <template>Test Case (Text)<template>
      <type>Other<type>
      <priority>Medium<priority>
      <estimate/>
      <references/>
      <custom>
         <preconds>Login page should display</preconds>
         <steps>1. Enter correct username 2.enter correct password</steps>
         <expected>Usershould able to login successfully.</expected>
      </custom>
   </case>
</section>   
  • <case> 标签支持 TestRail 中测试用例的所有属性,例如标题、估算、优先级、文本字段、前提条件、步骤、预期结果等

  • 自定义字段分组在<custom>标签下。

  • 下表列出了各种自定义字段类型的导入格式

类型 示例值 描述
复选框 TRUE "true" 或 "false"(不含引号)
日期 01-07-2010 yyyy-mm-dd 格式的有效 XML 日期字符串
下拉列表 <id>5</id> 值 ID(如在管理区域的自定义字段选项中配置)位于<id>标签中
整数 1022 一个简单的整数
里程碑 <id>2</id> 里程碑的 ID 位于<id>标签中
多选
<item>
   <id>1</id>
</item>
<item>
   <id>2</id>
</item>
一个<item>记录列表,每个记录都有其自己的 ID(因此,类似于下拉列表值列表)
步骤
<step>
   <index>1</index>
   <content>Step 1</content>
   <expected>Result 1</expected>
</step>
<step>
    <index>2</index><content>Step 2</content> 
</step>    
一个<step>记录列表,每个记录都有其自己的索引、内容和可选的预期结果
字符串/文本 Foobar 一个简单的字符串
URL(链接) http//google.com/ 一个简单的 URL 字符串
用户 <id>3</id> 用户的 ID 位于<id>标签中

导入 CSV 文件

  • 转到“测试用例”选项卡。

  • 点击右侧的导入测试用例图标,然后选择“从 XML 导入”选项。

以下屏幕截图显示了导入测试用例图标和 XML 选择

Import CSV File
  • 它将打开“从 XML 导入”向导。浏览并上传 XML 文件。

  • 用户可以添加新的测试用例以及更新现有的测试用例。

  • 选择后,点击“导入”按钮。

以下屏幕截图显示了如何导出 XML 文件

Export XML file
广告