-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[BUG] iframe inside an iframe is not visible #5313
Comments
Try launching like this, to see why Playwright makes it different: const browser = await chromium.launch({
ignoreDefaultArgs: ['--disable-features=TranslateUI,BlinkGenPropertyTrees,ImprovedCookieControls,SameSiteByDefaultCookies,LazyFrameLoading']
}) Otherwise, it's hard to help without a repro script. |
Feel free to reopen this with more info. Thanks! |
I'm trying to figure out this issue. @dgozman @JoelEinbinder Can you please reopen this issue? we couldn't. Do you have any further ideas on how to solve this? |
@odeliat My snippet disabled some Chromium arguments that might affect iframes visibility.
Do you have a repro script by any chance? It is hard to help without a script, or at least a page url that exhibits this behavior. |
@dgozman
You can do the same steps on a regular browser and see that it does show. |
Context:
System:
OS: macOS 11.1
Memory: 1.25 GB / 32.00 GB
Binaries:
Node: 14.9.0 - /usr/local/bin/node
Yarn: 1.22.5 - /usr/local/bin/yarn
npm: 6.14.7 - /usr/local/bin/npm
Languages:
Bash: 3.2.57 - /bin/bash
npmPackages:
playwright: ^1.7.1 => 1.7.1
Describe the bug
I have a website with an iframe inside iframe such as:
On chrome when i go to this webside i can see the inner iframe.
When i'm running a test with playwright on this website, the inner iframe is blank. (when i open dev-tools, it's suddenly appears)
When i run the same chromium by my self i can see the inner iframe.
my test config:
Any idea what could be the issue?
The text was updated successfully, but these errors were encountered: