如何在SoapUI中导入Postman集合

问题描述 投票:0回答:1

要求是从 Postman 导出 Collection 并在 SOAPUI 中导入[运行这些 API]。 为此,我只是导出集合及其附带的 json 扩展名。 我尝试使用两种方式将该集合导入到 SoapUI 中:

  1. 直接导入:看起来SoapUI正在寻找XML文件,而不是JSON。但是,如果我随后上传该文件,则不会发生任何事情,并且会显示带有十字符号的文件夹。
  2. 创建 REST 项目并提供 URI。这里又没有任何效果[API 不会直接出现]

我还尝试将 Collection JSON 文件转换为 XML 并将其上传到 SOAPUI 中。即使这样也行不通。

有什么方法可以直接将Collection导入到SOAPUI中吗?

import postman export soapui
1个回答
0
投票

看起来你可以导入 Postman v1 集合:

Importing a Postman Collection

To import the Postman collection to SoapUI:

    Select File > Import Postman Collection.

    In the Import Postman Collection dialog, click Browse and select the Postman collection to import.

SoapUI will create a new project and import all APIs described in the collection. If the collection has tests, SoapUI will create new SOAP or REST Request test step for each API definition with tests. You will be prompted to select the test case and test step name for each of these requests.

https://www.soapui.org/docs/postman-collections/

© www.soinside.com 2019 - 2024. All rights reserved.