- 인쇄
- 어두운빛
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
업데이트 ✨
개선 사항
- 공개된 시나리오 API와 테스트 결과 API에 개선을 추가했습니다.
시나리오 목록 및 시나리오 세부사항
author
및updater
필드 추가됨
시나리오 업데이트 APIcurl https://app.autify.com/api/v1/projects/12205/scenarios/330975 -H 'Authorization: Bearer <token>' ... ... "author": { "id": 22847, "username": "admin" }, "updater": { "id": 22847, "username": "admin" } ... ...
name
,description
,labels
을 업데이트
시나리오 복제 APIcurl 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" } ] }
시나리오 복제
테스트 결과 APIcurl https://app.autify.com/api/v1/projects/12205/scenarios/330975/duplications -H 'Authorization: Bearer <token>' -X POST { "id": 335182, "name": "[Copy] 오토파이 회귀 테스트", ... ... }
단계에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 문서를 업데이트했습니다.
이 문서가 도움이 되었습니까?