Skip to content
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

Iframe Support?? #443

Open
minh1997 opened this issue Jan 28, 2025 · 6 comments
Open

Iframe Support?? #443

minh1997 opened this issue Jan 28, 2025 · 6 comments
Labels
enhancement New feature or request

Comments

@minh1997
Copy link

Problem Description

I'm working on Payment Gateway but it's handle Infomation on Iframe. Browse ui seem cannot support Iframe locator

Image

Proposed Solution

Hope to support this feature soon

Alternative Solutions

No response

Additional Context

No response

@minh1997 minh1997 added the enhancement New feature or request label Jan 28, 2025
@MagMueller
Copy link
Collaborator

can you send us the website? / dom tree? Normally we support IFrames

@Arun-gox
Copy link

@MagMueller A simple example from me would be is to launch an extension in Google Sheets and try to perform actions in the sidebar. I was unable to do that.

@pseudotensor
Copy link

Same here. embedded things like pdf viewer in chromium that is launched has no bounding boxes made for clickable items:

Image

@puneetg1983
Copy link

I can see a lot of issues posted about iframes and we are also running into one. I created a very simple repro at https://webappwithiframes.azurewebsites.net/

You can see that the agent fails to click one of the links or buttons within any of the two iframes.

@john-heyer-scale
Copy link

+1 can't even locate buttons inside iframes

@cloudcarver
Copy link
Contributor

I encountered some similar issues when using my own chrome instance. The problem is about the cross-site origin iframe, and diable-web-security does not work.

Use --user-data-dir to start with a fresh profile, this would make sure that disable-web-security work.

    temp_dir = os.getenv("TEMP") + "\\chrome\\dev\\userdata3"
    browser = Browser(
        config=BrowserConfig(
            headless=False,
            chrome_instance_path="C:\Program Files\Google\Chrome\Application\chrome.exe",
            extra_chromium_args=[
                "--url=about:blank", 
                "--allow-running-insecure-content", 
                "--start-maximized", 
                "--disable-web-security", 
                "--disable-site-isolation-trials",
                "--disable-features=IsolateOrigins,site-per-process",
                "--no-first-run",
                "--no-default-browser-check",
                f"--user-data-dir={temp_dir}"
            ],
            disable_security=True,
        )
    )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

7 participants