-1

我正在尝试使用机器人测试框架。我对python有一些了解。我阅读了大多数在线可用的教程,但所有教程都在解释一些示例,但是当涉及到我的工作(我必须使用关键字或数据驱动测试)时,我无法同步到教程示例。有人可以建议我如何开始使用机器人框架。RIDE IDE 教程还解释了一些快速入门示例,但不清楚(可能对我来说)。

4

1 回答 1

0

您的问题不清楚,但标题说您正在尝试在 HTML 中创建测试数据(实际测试数据或测试用例?)。下面是一个以 HTML 格式编写的测试用例示例:

<html>
  <body>
    <h1>Example test suite</h1>

    <p>This is an example of a test suite written in HTML format </p>

    <table>
      <tr>
        <td>Test Cases</td><td>&nbsp;</td><td>&nbsp;</td>
      </tr>
      <tr>
        <td>Example test case</td><td>&nbsp;</td><td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td><td>Log</td><td>Hello, world</td>
      </tr>
    </table>
  </body>
</html>
于 2014-06-17T14:08:47.533 回答