From 539fbf37161515ecc951ad8a440cfdb184296386 Mon Sep 17 00:00:00 2001 From: asim-shrestha Date: Mon, 22 Jul 2024 13:23:45 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=90=20Update=20default=20height?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- harambe/contrib/playwright/harness.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/harambe/contrib/playwright/harness.py b/harambe/contrib/playwright/harness.py index 7c1a5b6..8fa9e7c 100644 --- a/harambe/contrib/playwright/harness.py +++ b/harambe/contrib/playwright/harness.py @@ -13,7 +13,7 @@ PageFactory = Callable[..., Awaitable[PlaywrightPage]] DEFAULT_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" -DEFAULT_VIEWPORT: ViewportSize = {"width": 1280, "height": 1024} +DEFAULT_VIEWPORT: ViewportSize = {"width": 1440, "height": 1024} @asynccontextmanager diff --git a/pyproject.toml b/pyproject.toml index 383339b..05563a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "harambe-sdk" -version = "0.17.1" +version = "0.17.11" description = "Data extraction SDK for Playwright 🐒🍌" authors = ["awtkns "] readme = "README.md"