← Back to All Reports
TESTS FAILED (0%)
Job Name
active_stock_prod
Pipeline ID
Job ID
#4399562
Branch
master
Commit
N/A
Executed At
2026-09-10T18:07:36.072349
0
Passed
3
Failed
0
Skipped

Test Results (3 tests)

test_as03_my_videos_action_buttons[chromium]
failed
⏱️ Duration: 20.67s
❌ Error:
self = <tests.test_active_stock.TestActiveStock object at 0x7f15b00b6b30> page = <Page url='https://promo.com/activecast/my-videos'> base_url = 'https://promo.com' @pytest.mark.skip_smoke def test_as03_my_videos_action_buttons(self, page: Page, base_url: str) -> None: """Logged-in user navigates to My Videos, confirms at least one video exists, and hovers to reveal action buttons.""" login_page = LoginPage(page) login_page.login_directly(base_url, general_mail(), get_password()) login_page.assert_logged_in_as(fullname) active_stock = ActiveStockPage(page) active_stock.navigate_to_active_stock(base_url) active_stock.go_to_my_videos() active_stock.assert_has_at_least_one_video() > active_stock.hover_first_video_and_assert_action_buttons() tests/test_active_stock.py:57: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pages.active_stock_page.ActiveStockPage object at 0x7f15b00f0520> def hover_first_video_and_assert_action_buttons(self) -> None: """Hovers first video card and asserts recreate, delete and download buttons appear. force=True: the My Videos grid keeps reflowing as thumbnails lazy-load, so plain hover()'s stability check never settles and times out even though the card is already visible. force=True skips that check and dispatches the hover event directly at the element's location. """ first_video = self.page.locator(self.ITEM_ACTIVATE).first first_video.wait_for(state="visible", timeout=self.T_ACTION) first_video.hover(force=True) for selector in [self.RECREATE_BTN, self.DELETE_PROJECT_BTN, self.DOWNLOAD_PROJECT_BTN]: > expect(self.page.locator(selector).first).to_be_visible(timeout=self.T_ACTION) E AssertionError: Locator expected to be visible E Actual value: None E Error: element(s) not found E
📸 Failure Screenshot:
Test failure screenshot
test_as04_generate_page_controls_after_image_activation[chromium]
failed
⏱️ Duration: 7.42s
❌ Error:
self = <tests.test_active_stock.TestActiveStock object at 0x7f15b00b76a0> page = <Page url='https://promo.com/activecast/generate?imageId=2124945686&imageSource=shutterstock&imageTitle=Self+portrait+...lf-portrait-beautiful-young-afro-600nw-2124945686.jpg&term=happy&searchType=category&searchTerm=happy&searchRatio=all'> base_url = 'https://promo.com' @pytest.mark.skip_smoke def test_as04_generate_page_controls_after_image_activation(self, page: Page, base_url: str) -> None: """Logged-in user activates an image from the create grid and verifies all generator controls are visible.""" login_page = LoginPage(page) login_page.login_directly(base_url, general_mail(), get_password()) login_page.assert_logged_in_as(fullname) active_stock = ActiveStockPage(page) active_stock.navigate_to_create(base_url) active_stock.assert_grid_has_at_least_20_items() active_stock.hover_second_item_and_assert_activate_btn() > active_stock.activate_image_and_assert_generate_page() tests/test_active_stock.py:70: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pages.active_stock_page.ActiveStockPage object at 0x7f15acfefc70> def activate_image_and_assert_generate_page(self) -> None: """Clicks activate-image, then asserts URL, all generator controls visible, and crop/link controls absent.""" with self.page.expect_navigation(timeout=self.T_NETWORK): self.page.locator(self.ACTIVATE_IMAGE_BTN).first.click(force=True) # "networkidle" never resolves on this page (continuous analytics/chat-widget # traffic), so rely on domcontentloaded plus the action-based waits below. self.page.wait_for_load_state("domcontentloaded") > assert "/active-cast/generate?imageId=" in self.page.url, ( f"Expected URL to contain '/active-cast/generate?imageId=', got: {self.page.url}" ) E AssertionError: Expected
📸 Failure Screenshot:
Test failure screenshot
test_as05_full_generation_flow[chromium]
failed
⏱️ Duration: 21.49s
❌ Error:
self = <tests.test_active_stock.TestActiveStock object at 0x7f15b00b6620> page = <Page url='https://promo.com/activecast/generate?imageId=2124945686&imageSource=shutterstock&imageTitle=Self+portrait+...lf-portrait-beautiful-young-afro-600nw-2124945686.jpg&term=happy&searchType=category&searchTerm=happy&searchRatio=all'> base_url = 'https://promo.com' @pytest.mark.skip_smoke def test_as05_full_generation_flow(self, page: Page, base_url: str) -> None: """Logged-in user activates an image, configures Kling 3 Standard generation, and waits for video result.""" login_page = LoginPage(page) login_page.login_directly(base_url, general_mail(), get_password()) login_page.assert_logged_in_as(fullname) active_stock = ActiveStockPage(page) active_stock.navigate_to_active_stock(base_url) active_stock.click_create_in_nav() active_stock.assert_grid_has_at_least_20_items() active_stock.hover_first_item_and_click_activate() active_stock.select_second_action_template() active_stock.fill_scene_action( "The man is indoors, wearing the same pink polo shirt. " "Preserve his identity, hairstyle, outfit. The man is terrifies and shouts." ) active_stock.assert_speaker_chip_avatar_visible() active_stock.fill_scene_text( "Hi, I'm your ActiveStock Terrified Avatar. " "I can help you create inspiring content with real footage from places all over the world." ) active_stock.select_model("Kling 3 Standard") duration_before_sync = active_stock.get_duration_label() active_stock.enable_smart_sync() > active_stock.assert_duration_auto_synced_and_locked(duration_before_sync) tests/test_active_stock.py:98: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pages.active_stock_page.ActiveStockPage object at 0x7f15b03645e0> previous_label = 'Duration:
📸 Failure Screenshot:
Test failure screenshot