Add cloud URL and app binary ID to HTML report#3260
Open
mikamikaWolt wants to merge 2 commits intomobile-dev-inc:mainfrom
Open
Add cloud URL and app binary ID to HTML report#3260mikamikaWolt wants to merge 2 commits intomobile-dev-inc:mainfrom
mikamikaWolt wants to merge 2 commits intomobile-dev-inc:mainfrom
Conversation
Fishbowler
reviewed
May 5, 2026
Comment on lines
+703
to
+705
| totalTests = sumOf { it.totalTests ?: 0 }, | ||
| cloudUploadUrl = acc.cloudUploadUrl ?: summary.cloudUploadUrl, | ||
| appBinaryId = acc.appBinaryId ?: summary.appBinaryId, |
Contributor
There was a problem hiding this comment.
I don't think that this route can lead to a summary with a cloudUploadUrl or an appBinaryId. You'd only get here via maestro test ...
| testSuiteName = testSuiteName, | ||
| uploadUrl = uploadUrl, | ||
| projectId = projectId, | ||
| appBinaryId = appBinaryIdResponse, |
Contributor
There was a problem hiding this comment.
I think this should work for tests where you pass an existing app-binary-id to maestro cloud, but worth explicitly adding to your test plan.
Author
There was a problem hiding this comment.
Verified both options:
maestro cloud --app-binary-id <id>... (existing binary)maestro cloud <app-file>... (upload new binary)
In both cases, HTML report footer contains:
- View details on Maestro Cloud URL
- App binary id value
Remove cloud metadata merging from local `maestro test` summary aggregation and only render the HTML footer when a cloud upload URL is present. Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
cloudUploadUrl,appBinaryId) inTestExecutionSummaryso report renderers can access itCloudInteractor)maestro testbehavior unchanged by not merging cloud metadata in local summary aggregation and by rendering the footer only when a cloud URL is presentTest plan
maestro cloud ... --format htmland confirm report includes a cloud URL link and app binary ID at the bottommaestro test --format htmland confirm report layout is unchanged