fix: do not open DevTools if it is already open#3443
Merged
Conversation
Ports upstream Puppeteer PR #14922. Extracts GetDevToolsTargetPageAsync from CreateDevToolsPageAsync in CdpBrowser, and updates OpenDevToolsAsync in CdpPage to check for an existing DevTools target before opening a new one — preventing focus stealing when DevTools is already open. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced May 20, 2026
This was referenced Jun 2, 2026
sondresjolyst
added a commit
to sondresjolyst/garge-api
that referenced
this pull request
Jun 8, 2026
Updated [PuppeteerSharp](https://github.com/hardkoded/puppeteer-sharp) from 24.42.0 to 25.0.4. <details> <summary>Release notes</summary> _Sourced from [PuppeteerSharp's releases](https://github.com/hardkoded/puppeteer-sharp/releases)._ ## 25.0.4 ## What's New * chore: roll Firefox to 150.0.3 (upstream #14983) by @kblok in hardkoded/puppeteer-sharp#3468 * chore: roll Chrome to 148.0.7778.167 (upstream #14980) by @kblok in hardkoded/puppeteer-sharp#3469 * feat(webmcp): add UntrustedContent annotation support by @kblok in hardkoded/puppeteer-sharp#3442 ## What's Changed * Update sponsors by @github-actions[bot] in hardkoded/puppeteer-sharp#3444 * fix: do not open DevTools if it is already open by @kblok in hardkoded/puppeteer-sharp#3443 * feat: implement URL allowlist for network restrictions (upstream #14897, #14931) by @kblok in hardkoded/puppeteer-sharp#3445 * fix: disable WebUIReloadButton experiment in Chrome launcher by @kblok in hardkoded/puppeteer-sharp#3438 * Fix #3448: correct CDP_ONLY condition check and missing using guards by @kblok in hardkoded/puppeteer-sharp#3449 * chore: sync WebMCP test expectations from upstream PR #14918 (#14918) by @kblok in hardkoded/puppeteer-sharp#3450 * Implement upstream PR #14821: browser extensions API by @kblok in hardkoded/puppeteer-sharp#3404 * remove networkidle from setContent by @kblok in hardkoded/puppeteer-sharp#3453 * fix: reject BiDi URL restrictions by @kblok in hardkoded/puppeteer-sharp#3452 * Implement upstream PR #14430 - dispose sub-classes correctly by @kblok in hardkoded/puppeteer-sharp#3454 * Implement upstream PR #14946 - Roll Firefox to 150.0.2 by @kblok in hardkoded/puppeteer-sharp#3451 * Implement upstream PR #14945 - optimize url blocking on navigation by @kblok in hardkoded/puppeteer-sharp#3455 * fix: normalize newline-separated headers to comma-separated (upstream #14492) by @kblok in hardkoded/puppeteer-sharp#3457 * fix: block emulateNetworkConditions when block/allowlist is active (upstream #14976) by @kblok in hardkoded/puppeteer-sharp#3458 * fix: don't store request on BrowsingContext (upstream #14966) by @kblok in hardkoded/puppeteer-sharp#3460 * fix!: remove Cookie SameParty attribute (upstream #14545) by @kblok in hardkoded/puppeteer-sharp#3461 * chore: track upstream #14910 (remove deprecated Browser.isConnected()) by @kblok in hardkoded/puppeteer-sharp#3464 * fix: route CDP responses by callback id when sessionId missing (upstream #14975) by @kblok in hardkoded/puppeteer-sharp#3456 * fix: enabled features take precedence over disabled features (upstream #14985) by @kblok in hardkoded/puppeteer-sharp#3470 * chore: bump version to 25.0.4 by @kblok in hardkoded/puppeteer-sharp#3471 **Full Changelog**: hardkoded/puppeteer-sharp@v24.42.0...v25.0.4 Commits viewable in [compare view](hardkoded/puppeteer-sharp@v24.42.0...v25.0.4). </details> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sondre Sjølyst <18713420+sondresjolyst@users.noreply.github.com>
This was referenced Jun 12, 2026
This was referenced Jun 22, 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.
Summary
Ports upstream Puppeteer PR #14922.
GetDevToolsTargetPageAsync(string devtoolsTargetId)as a new method inCdpBrowser, refactoringCreateDevToolsPageAsyncto delegate to itCdpPage.OpenDevToolsAsync()to first check if a DevTools target already exists viaHasDevToolsTargetAsync— if so, returns the existing DevTools page without re-opening (which would steal focus)IPage.OpenDevToolsAsyncXML doc comment to reflect the new "if not already open" behaviorProblem: Opening DevTools steals focus. If DevTools was already open and the page called
openDevTools()again (e.g., from a background tab), it would steal focus unnecessarily.Fix: Check for an existing DevTools target first. If one exists, return the existing DevTools page instead of triggering
Target.openDevToolsagain.Test plan
dotnet build lib/PuppeteerSharp/PuppeteerSharp.csproj— succeeded with 0 warnings/errorsOpenDevToolsAsync()twice returns the same DevTools page without re-focusing🤖 Generated with Claude Code