-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Comments
can you send us the website? / dom tree? Normally we support IFrames |
@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. |
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. |
+1 can't even locate buttons inside iframes |
I encountered some similar issues when using my own chrome instance. The problem is about the cross-site origin iframe, and Use 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,
)
) |
Problem Description
I'm working on Payment Gateway but it's handle Infomation on
Iframe
. Browse ui seem cannot supportIframe
locatorProposed Solution
Hope to support this feature soon
Alternative Solutions
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: