@@ -151,6 +151,36 @@ Feature: Synthetics
151151 When the request is sent
152152 Then the response status is 200 OK
153153
154+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
155+ Scenario : Get a browser test result returns "API error response." response
156+ Given new "GetSyntheticsBrowserTestResult" request
157+ And request contains "public_id" parameter from "REPLACE.ME"
158+ And request contains "result_id" parameter from "REPLACE.ME"
159+ When the request is sent
160+ Then the response status is 404 API error response.
161+
162+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
163+ Scenario : Get a browser test result returns "OK" response
164+ Given new "GetSyntheticsBrowserTestResult" request
165+ And request contains "public_id" parameter from "REPLACE.ME"
166+ And request contains "result_id" parameter from "REPLACE.ME"
167+ When the request is sent
168+ Then the response status is 200 OK
169+
170+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
171+ Scenario : Get a browser test's latest results returns "API error response." response
172+ Given new "ListSyntheticsBrowserTestLatestResults" request
173+ And request contains "public_id" parameter from "REPLACE.ME"
174+ When the request is sent
175+ Then the response status is 404 API error response.
176+
177+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
178+ Scenario : Get a browser test's latest results returns "OK" response
179+ Given new "ListSyntheticsBrowserTestLatestResults" request
180+ And request contains "public_id" parameter from "REPLACE.ME"
181+ When the request is sent
182+ Then the response status is 200 OK
183+
154184 @generated @skip @team:DataDog/synthetics-orchestrating-managing
155185 Scenario : Get a fast test result returns "API error response." response
156186 Given new "GetSyntheticsFastTestResult" request
@@ -211,6 +241,36 @@ Feature: Synthetics
211241 When the request is sent
212242 Then the response status is 200 OK
213243
244+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
245+ Scenario : Get a test result returns "API error response." response
246+ Given new "GetSyntheticsTestResult" request
247+ And request contains "public_id" parameter from "REPLACE.ME"
248+ And request contains "result_id" parameter from "REPLACE.ME"
249+ When the request is sent
250+ Then the response status is 404 API error response.
251+
252+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
253+ Scenario : Get a test result returns "OK" response
254+ Given new "GetSyntheticsTestResult" request
255+ And request contains "public_id" parameter from "REPLACE.ME"
256+ And request contains "result_id" parameter from "REPLACE.ME"
257+ When the request is sent
258+ Then the response status is 200 OK
259+
260+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
261+ Scenario : Get a test's latest results returns "API error response." response
262+ Given new "ListSyntheticsTestLatestResults" request
263+ And request contains "public_id" parameter from "REPLACE.ME"
264+ When the request is sent
265+ Then the response status is 404 API error response.
266+
267+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
268+ Scenario : Get a test's latest results returns "OK" response
269+ Given new "ListSyntheticsTestLatestResults" request
270+ And request contains "public_id" parameter from "REPLACE.ME"
271+ When the request is sent
272+ Then the response status is 200 OK
273+
214274 @generated @skip @team:DataDog/synthetics-orchestrating-managing
215275 Scenario : Get available subtests for a multistep test returns "OK" response
216276 Given new "GetApiMultistepSubtests" request
@@ -322,6 +382,20 @@ Feature: Synthetics
322382 When the request is sent
323383 Then the response status is 200 OK
324384
385+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
386+ Scenario : Poll for test results returns "API error response." response
387+ Given new "PollSyntheticsTestResults" request
388+ And request contains "result_ids" parameter from "REPLACE.ME"
389+ When the request is sent
390+ Then the response status is 404 API error response.
391+
392+ @generated @skip @team:DataDog/synthetics-orchestrating-managing
393+ Scenario : Poll for test results returns "OK" response
394+ Given new "PollSyntheticsTestResults" request
395+ And request contains "result_ids" parameter from "REPLACE.ME"
396+ When the request is sent
397+ Then the response status is 200 OK
398+
325399 @team:DataDog/synthetics-orchestrating-managing
326400 Scenario : Save new value for on-demand concurrency cap returns "OK" response
327401 Given new "SetOnDemandConcurrencyCap" request
0 commit comments