Replies: 1 comment 1 reply
-
Hello, This is by design. Since Camoufox overrides both the inner and output window size, it takes precedence over Playwright's When creating a Camoufox() instance in Python, the library will generate a fake window inner/outer width for you, and uses it to calculate window position on the fake screen. You can override this however by setting the with Camoufox(window=(1282, 955)) as browser:
... |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to increase the viewport size because in some websites, page.screenshot(full_page=True) method doesn't get the full page.
Using only playwright, set_viewport_size works as expected, but with camoufox it doesn't.
Beta Was this translation helpful? Give feedback.
All reactions