-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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] Scrollbars are not hidden #3330
Comments
@Anrb13 can you share you code snippet? I tried to reproduce it with the following code in Playwright 1.2.1 and 1.3.0: const { webkit, devices } = require('playwright');
const iPhone11 = devices['iPhone 11'];
(async () => {
const browser = await webkit.launch({
headless: false,
});
const context = await browser.newContext({
...iPhone11,
locale: 'ru-RU',
});
const page = await context.newPage();
await page.goto('https://www.wildberries.ru/');
await page.screenshot({ path: 'w.png' });
await browser.close();
})(); |
I tried to localize problem, think its about cookie dat i add in test, but no, (async () => { |
@Anrb13 did you attach correct screenshot? I don't see scrollbars on this image. The page layout seems a bit off indeed but this is likely a different issue. I'd like to first reproduce the scrollbars problem if it still exists. |
https://github.com/Anrb13/testsm - my repo, if it helps, |
Thanks for sharing the repo, I managed to reproduce it with the sportmaster site. Looks like the particular state that depends on the cookies is important. This is clearly a bug in the Windows port of WebKit we ship. Also the picture that I see on the screenshot: |
Should be fixed now. |
Context:
scrollbars are not hidden
The text was updated successfully, but these errors were encountered: