⏱️ Duration: 20.18s
❌ Error:
self = <tests.test_rendering.TestRendering object at 0x7fe78b4b73a0>
login_page = <pages.login_page.LoginPage object at 0x7fe78b70c370>
create_page = <pages.create_page.CreatePage object at 0x7fe78b4b4df0>
editor_page = <pages.editor_page.EditorPage object at 0x7fe78b4b5750>
publish_page = <pages.publish_page.PublishPage object at 0x7fe78b4b75b0>
env = 'test03'
@pytest.mark.parametrize("env", ["prod", "test03", "test05"])
def test_r01_generate_video_and_publish(
self, login_page, create_page, editor_page, publish_page, env
):
"""
R01 Generate video and publish (all envs short smoke)
Login to the specified environment, navigate to the create page,
customize the first available video, publish it, and verify the
publish page renders correctly.
Mirrors: test_rendering_scenarios.feature → 'Generate video and publish'
"""
env_url = _env_base_url(env)
email = _env_email(env)
> login_page.login_directly(env_url, email, get_password())
tests/test_rendering.py:79:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
pages/login_page.py:109: in login_directly
self.enter_email(email)
pages/login_page.py:73: in enter_email
self.page.locator(self.EMAIL_INPUT).fill(email)
/usr/local/lib/python3.10/dist-packages/playwright/sync_api/_generated.py:18242: in fill
self._sync(
/usr/local/lib/python3.10/dist-packages/playwright/_impl/_locator.py:219: in fill
return await self._frame.fill(self._selector, strict=True, **params)
/usr/local/lib/python3.10/dist-packages/playwright/_impl/_frame.py:636: in fill
await self._fill(**locals_to_params(locals()))
/usr/local/lib/python3.10/dist-packages/playwright/_impl/_frame.py:648: in _fill
await self._channel.send("fill", self._timeout, locals_to_params(locals()))
/usr/local/lib/python3.10/dist-packages/playwright/_impl/_connection.py:76: in send
return await self._connection.wrap_api_cal
📸 Failure Screenshot:
⏱️ Duration: 419.75s
❌ Error:
self = <tests.test_rendering.TestRendering object at 0x7fe78b4b7fa0>
login_page = <pages.login_page.LoginPage object at 0x7fe788ed3010>
create_page = <pages.create_page.CreatePage object at 0x7fe788ed3af0>
editor_page = <pages.editor_page.EditorPage object at 0x7fe788ed3c10>
publish_page = <pages.publish_page.PublishPage object at 0x7fe788ed3130>
env = 'test05'
@pytest.mark.parametrize("env", ["prod", "test03", "test05"])
def test_r01_generate_video_and_publish(
self, login_page, create_page, editor_page, publish_page, env
):
"""
R01 Generate video and publish (all envs short smoke)
Login to the specified environment, navigate to the create page,
customize the first available video, publish it, and verify the
publish page renders correctly.
Mirrors: test_rendering_scenarios.feature → 'Generate video and publish'
"""
env_url = _env_base_url(env)
email = _env_email(env)
login_page.login_directly(env_url, email, get_password())
create_page.navigate_to_create(env_url)
create_page.select_videos_from_type_dropdown()
create_page.customize_first_video()
editor_page.verify_editor_loaded()
editor_page.publish_video()
> publish_page.wait_for_render_and_verify()
tests/test_rendering.py:87:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
pages/publish_page.py:32: in wait_for_render_and_verify
self.page.locator(self.PUBLISH_READY).wait_for(state="visible", timeout=max_wait_ms)
/usr/local/lib/python3.10/dist-packages/playwright/sync_api/_generated.py:20539: in wait_for
self._sync(
/usr/local/lib/python3.10/dist-packages/playwright/_impl/_locator.py:748: in wait_for
await self._frame.wait_for_selector(
/usr/local/lib/python3.10/dist-packages/playwright/_impl/_frame.py:394: in wait_for_selector
await self._channel.send(
/usr/local/lib/python3.10/dist-packages/playwright/_im
📸 Failure Screenshot: