From 2ae53e3e2edde18793a498ea6cc0baaa03287823 Mon Sep 17 00:00:00 2001 From: nsubbot Date: Thu, 15 Jan 2026 14:02:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=BD?= =?UTF-8?q?=D1=8B=D0=B9=20=D1=84=D0=B8=D0=BA=D1=81=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B1=D0=BB=D0=B5=D0=BC=D1=8B=20=D0=BF=D0=B5=D1=80=D0=B5=D1=85?= =?UTF-8?q?=D0=BE=D0=B4=D0=B0=20=D0=BD=D0=B0=20https=20=D0=B2=D0=B5=D1=80?= =?UTF-8?q?=D1=81=D0=B8=D1=8E=20=D0=BF=D1=80=D0=B8=D0=BB=D0=BE=D0=B6=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/environment.py | 4 ++-- fixtures/pages.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/data/environment.py b/data/environment.py index 443b759..9198990 100644 --- a/data/environment.py +++ b/data/environment.py @@ -20,8 +20,8 @@ class Environment: DEVELOP: str = 'develop' URLS: Dict[str, str] = { - TEST: 'http://192.168.2.76/', - DEVELOP: 'http://192.168.2.69/' + TEST: 'https://192.168.2.76/', + DEVELOP: 'https://192.168.2.69/' } def __init__(self) -> None: diff --git a/fixtures/pages.py b/fixtures/pages.py index cf7d4e8..539b3d7 100644 --- a/fixtures/pages.py +++ b/fixtures/pages.py @@ -164,6 +164,7 @@ def get_context(browser: Browser, request: FixtureRequest, start: str) -> Browse context = browser.new_context( # no_viewport=True, + ignore_https_errors=True, viewport= ast.literal_eval(request.config.getoption('--s')), locale=request.config.getoption('l') )