feat(web-integration): enable forceChromeSelectRendering by default and simplify report path logging#2653
Open
yuyutaotao wants to merge 2 commits into
Open
feat(web-integration): enable forceChromeSelectRendering by default and simplify report path logging#2653yuyutaotao wants to merge 2 commits into
yuyutaotao wants to merge 2 commits into
Conversation
The report generator printed the path three times across a run
("will be generated at" at construction, "generated" on first write,
"finalized" on finalize). The construction line was redundant with the
first-write line, and "finalized" was misleading since users append to
the report on every call, so there is no real terminal state.
Collapse these into a single "Midscene - report file updated: <path>"
message emitted once on the first write, matching the wording already
used by printReportMsg and documented in the site docs.
- Default forceChromeSelectRendering to true for Puppeteer/Playwright agents - Inject the select-rendering style only once per page (WeakSet guard) to avoid stacking duplicate load listeners across agent re-creation - Only warn about driver version requirements when explicitly opted in - Update bilingual docs and add unit coverage for the once-only injection
Deploying midscene with
|
| Latest commit: |
398b5b0
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://252c8a8b.midscene.pages.dev |
| Branch Preview URL: | https://claude-tender-archimedes-sd1.midscene.pages.dev |
EAGzzyCSL
approved these changes
Jun 11, 2026
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.
The report generator printed the path three times across a run ("will be generated at" at construction, "generated" on first write, "finalized" on finalize). The construction line was redundant with the first-write line, and "finalized" was misleading since users append to the report on every call, so there is no real terminal state.
Collapse these into a single "Midscene - report file updated: " message emitted once on the first write, matching the wording already used by printReportMsg and documented in the site docs.