2025年1月8日のリリース

Prev Next

※ このトピックの一部は機械翻訳で処理されています。

アップデート ✨

改善点

  • 公開されているシナリオAPIとテスト結果APIに以下の改善を加えました。
    シナリオ一覧およびシナリオ詳細
    author および updater フィールドを追加しました。
    curl https://app.autify.com/api/v1/projects/12205/scenarios/330975 -H 'Authorization: Bearer <token>'
    
    ...
    ...
      "author": {
        "id": 22847,
        "username": "admin"
      },
      "updater": {
        "id": 22847,
        "username": "admin"
      }
    ...  
    ...
    
    シナリオ更新API
    namedescriptionlabels を更新できるようになりました。
    curl https://app.autify.com/api/v1/projects/12205/scenarios/335122 -H 'Authorization: Bearer <token>' -X PUT -d '{"name": "新しいシナリオ2025", "description": "これは2025年に向けた新たなシナリオアップデートである", "labels": ["2025"]}' -H 'content-type:application/json'
    
    {
      ...
      "name": "新しいシナリオ2025",
      "description": "これは2025年に向けた新たなシナリオアップデートである",
      ...
      ...
      "labels": [
            {
              "id": 10287,
              "name": "2025",
              "color": "gray",
              "created_at": "2025-01-07T06:12:34.676Z",
              "updated_at": "2025-01-07T06:12:34.676Z"
            }
          ]
    }
    
    シナリオ複製API
    シナリオの複製が可能になりました。
    curl https://app.autify.com/api/v1/projects/12205/scenarios/330975/duplications -H 'Authorization: Bearer <token>' -X POST
    
    {
      "id": 335182,
      "name": "[Copy] オートファイ回帰テスト",
      ...
      ...
    }
    
    テスト結果API
    ステップに diff フィールドを追加しました。
    curl https://app.autify.com/api/v1/projects/12205/results/4096362\?get_details\=true -H 'Authorization: Bearer <token>'
    
    {
      "id": 4096362,
        ...
      "test_plan_capability_results": [
              ...
          "test_case_results": [
            {
              ...
              "steps": [
                {
                  ...
                  "diff": 0.03906956214689265
                },
                {
                  ...
                  "diff": 0.000356638418079096
                },
                {
                  ...
                  "diff": 0
                }
              ],
              ...
      ...
    }
    
  • 公開APIドキュメント を更新し、不要なフィールドを削除しました。