Skip to content

Add assertRequests browser step type #2147

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-08 20:55:42.865376",
"spec_repo_commit": "21cf6edb"
"regenerated": "2025-04-10 11:41:52.470601",
"spec_repo_commit": "7f98e0a9"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-08 20:55:42.884212",
"spec_repo_commit": "21cf6edb"
"regenerated": "2025-04-10 11:41:52.486222",
"spec_repo_commit": "7f98e0a9"
}
}
}
2 changes: 2 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16663,6 +16663,7 @@ components:
- assertFromJavascript
- assertPageContains
- assertPageLacks
- assertRequests
- click
- extractFromJavascript
- extractVariable
Expand Down Expand Up @@ -16691,6 +16692,7 @@ components:
- ASSERT_FROM_JAVASCRIPT
- ASSERT_PAGE_CONTAINS
- ASSERT_PAGE_LACKS
- ASSERT_REQUESTS
- CLICK
- EXTRACT_FROM_JAVASCRIPT
- EXTRACT_VARIABLE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1437,6 +1437,7 @@ const enumsMap: { [key: string]: any[] } = {
"assertFromJavascript",
"assertPageContains",
"assertPageLacks",
"assertRequests",
"click",
"extractFromJavascript",
"extractVariable",
Expand Down
2 changes: 2 additions & 0 deletions packages/datadog-api-client-v1/models/SyntheticsStepType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export type SyntheticsStepType =
| typeof ASSERT_FROM_JAVASCRIPT
| typeof ASSERT_PAGE_CONTAINS
| typeof ASSERT_PAGE_LACKS
| typeof ASSERT_REQUESTS
| typeof CLICK
| typeof EXTRACT_FROM_JAVASCRIPT
| typeof EXTRACT_VARIABLE
Expand All @@ -46,6 +47,7 @@ export const ASSERT_FILE_DOWNLOAD = "assertFileDownload";
export const ASSERT_FROM_JAVASCRIPT = "assertFromJavascript";
export const ASSERT_PAGE_CONTAINS = "assertPageContains";
export const ASSERT_PAGE_LACKS = "assertPageLacks";
export const ASSERT_REQUESTS = "assertRequests";
export const CLICK = "click";
export const EXTRACT_FROM_JAVASCRIPT = "extractFromJavascript";
export const EXTRACT_VARIABLE = "extractVariable";
Expand Down