-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Open cross-origin iframes in a new tab to avoid needing --disable-web-security
#1114
Merged
pirate
merged 20 commits into
browser-use:main
from
pirate:nick/tri-4-make-cross-site-iframes-work-without-disabling-chrome
Mar 25, 2025
Merged
Open cross-origin iframes in a new tab to avoid needing --disable-web-security
#1114
pirate
merged 20 commits into
browser-use:main
from
pirate:nick/tri-4-make-cross-site-iframes-work-without-disabling-chrome
Mar 25, 2025
Conversation
This file contains 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
…out-disabling-chrome
This was referenced Mar 23, 2025
--disable-web-security
--disable-web-security
…out-disabling-chrome
|
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.
Related issues (this first-pass PR does not fully fix all of these, but it should help):
This PR attempts to break CORS from the agent's perspectve and allow
buildDOMTree.js
to traverse cross-origin iframes just like it currently does non-cross-origin iframes. Unfortunately the same approach used for same-origin frames is not possible, browser security forces us to go around the wall via playwright instead, but this introduces several new hurdles.We have to create a new id translation mapping that mutates all the subframe generated DOM trees to reconnect the references to cross-origin parents & children. We also have to deterministically merge/offset all the IDs and update child id references to prevent conflicts, without introducing any dependency between frames during tree generation to keep it parallel.
The main challenges
page.frames
contain cross-origin frames, exit, retry and the next time it doesn't, retry a few times then it does, etc. there is a race or timing issuename=
orurl=
as lookup params and nothing else.In an ideal world we'd want
<iframe />
to have a stable and globally uniquename="..."
orurl="..."
attrpage.frame('name')
works to pierce and get that specific iframe even if nested/html/body/iframe[somename]/html/body/iframe[othername]
buildDOMTree.js
in parallel for speed, and output should be merged at the end. building it frame by frame and passing the growingindexOffset
counter between them serially is too slowApproaches tried
pre-tagging every iframe encountered with adoesn't work because JS frameworks like react/vue/etc redraw the element immediately, also doesn't solve the issue of how to pierce parent frames to find the element laterdata-browser-use-iframe-id={idx}
attrusing playwright to trick the browser into thinking it's a same-origin domain by rewriting the iframe request and response URLstoo complex/browser security prevents it without crazy root CA hackspassing anforces them to run serially, or forces us to switch to a longer ID format w/ random ids (which might break vision, the system prompt, or lower LLM success)indexOffset
counter intobuildDOMTree.js
so the IDs it generates don't conflict with the parent framegive up on nested and non-unique iframes and only support top-level cross-origin and same-origin iframesI got this 1/2 working but it's slow and makes some pages more buggy