Test Results (10 tests)
⏱️ Duration: 341.17s
❌ Error:
fixturefunc = <function go_to_published_tab at 0x7f4ba4572b90>
request = <FixtureRequest for <Function test_w17_edit_published_video_starting_from_dashboard__release>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="e814f03b58d5b90373a08ab96799c2a6")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_dashboard_page.py:56: in go_to_published_tab
bs_fail_with_traceback(browser, go_to_published_tab, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_dashboard_page.py:54: in go_to_published_tab
go_to_dashboard(browser, "published")
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="e814f03b58d5b90373a08ab96799c2a6")>
project_type = 'published'
def go_to_dashboard(browser, project_type: str):
"""
Go to Dashboard and open
project_type (str): locator [Draft or Published]
"""
if project_type == "drafts":
option = MY_VIDEOS_DRAFTS
elif project_
📸 Failure Screenshot:
⏱️ Duration: 421.17s
❌ Error:
fixturefunc = <function publish_editor_video at 0x7f4ba45a7f40>
request = <FixtureRequest for <Function test_w19_verify_brand_manager_functionalities_basic>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="b63588858c9bb0a0162ee40c13f32229")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_editor_page.py:397: in publish_editor_video
bs_fail_with_traceback(browser, publish_editor_video, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_editor_page.py:395: in publish_editor_video
publish_video(browser)
pages/editor_page.py:1158: in publish_video
do_click(browser, SAVE_AND_PREVIEW_BTN, 10)
helpers/common_helpers.py:200: in do_click
WebDriverWait(browser, sec, poll_frequency=0.4).until(
venv/lib/python3.10/site-packages/selenium/webdriver/support/wait.py:92: in until
value = method(self._driver)
venv/lib/python3.10/site-packages/selenium/webdriver/support/expected_conditions.py:355: in _predicate
target = driver.find_element(*target) # grab element at locator
venv/lib/python3.10/s
⏱️ Duration: 320.55s
❌ Error:
fixturefunc = <function verify_file_downloaded at 0x7f4ba433e0e0>
request = <FixtureRequest for <Function test_w29_download_a_video_from_the_publish_page[hd]>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="10de9523f3bfe2dd3b6dc3f1bef38f05")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_planner_page.py:712: in verify_file_downloaded
bs_fail_with_traceback(browser, verify_file_downloaded, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_planner_page.py:710: in verify_file_downloaded
assert_file_downloaded(browser)
helpers/common_helpers.py:1269: in assert_file_downloaded
files_downloaded_successfully(browser)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="10de9523f3bfe2dd3b6dc3f1bef38f05")>
def files_downloaded_successfully(browser):
"""
Requires: User is on the Google Chrome downloads tab
Wait is added to make sure that download process is already started
📸 Failure Screenshot:
⏱️ Duration: 307.49s
❌ Error:
fixturefunc = <function logged_in_new_pass_change at 0x7f565910e680>
request = <FixtureRequest for <Function test_w22_verify_password_changes__release>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="e9524007eae9b0caec1b80d19cb31a5a")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_login.py:255: in logged_in_new_pass_change
bs_fail_with_traceback(browser, logged_in_new_pass_change, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_login.py:253: in logged_in_new_pass_change
user_logs_in(browser, email_pass_change, fullname)
pages/login_page.py:215: in user_logs_in
check_correct_username(browser, correct_username)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="e9524007eae9b0caec1b80d19cb31a5a")>
correct_username = 'Automate Promo'
def check_correct_username(browser, correct_username):
"""
Checks if user is logged correctly - checks correct username in header.
📸 Failure Screenshot:
⏱️ Duration: 176.09s
❌ Error:
fixturefunc = <function full_preview_of_video at 0x7f56592ba200>
request = <FixtureRequest for <Function test_w23_fully_preview_a_video_on_create_page>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="17b13d99f6c8dafa7f6b663ac208269e")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_create_page.py:56: in full_preview_of_video
bs_fail_with_traceback(browser, full_preview_of_video, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_create_page.py:54: in full_preview_of_video
preview_and_verify_preview_functionalities_template(browser)
pages/create_page.py:210: in preview_and_verify_preview_functionalities_template
check_all_ratios(browser)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="17b13d99f6c8dafa7f6b663ac208269e")>
def check_all_ratios(browser):
"""
Helper function - it verifies all ratios on preview
"""
do_hover(browser, PREVIEW_WRAPPER_WHOLE_VIDE
📸 Failure Screenshot:
⏱️ Duration: 297.45s
❌ Error:
fixturefunc = <function verify_user_redirected_to_publisher at 0x7f565910fe20>
request = <FixtureRequest for <Function test_w24_verify_all_players__release>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="baf264e4b16e7dcd21e91b18b951afae")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_publisher_page.py:25: in verify_user_redirected_to_publisher
bs_fail_with_traceback(browser, verify_user_redirected_to_publisher, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="baf264e4b16e7dcd21e91b18b951afae")>
@then('I verify user is redirected to the publisher')
def verify_user_redirected_to_publisher(browser):
try:
> assert is_visible(browser, PUBLISH_POST_BTN, 15)
E assert False
E + where False = is_visible(<selenium.webdriver.remote.webdriver.WebDriver (session="baf264e4b16e7dcd21e91b18b951afae")>, ('xpath', '//BUTTON[
📸 Failure Screenshot:
⏱️ Duration: 307.62s
❌ Error:
fixturefunc = <function verify_file_downloaded at 0x7f5659194160>
request = <FixtureRequest for <Function test_w29_download_a_video_from_the_publish_page[full_hd]>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="f190725c263101fd71be4f3da0ad384f")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_planner_page.py:712: in verify_file_downloaded
bs_fail_with_traceback(browser, verify_file_downloaded, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_planner_page.py:710: in verify_file_downloaded
assert_file_downloaded(browser)
helpers/common_helpers.py:1269: in assert_file_downloaded
files_downloaded_successfully(browser)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="f190725c263101fd71be4f3da0ad384f")>
def files_downloaded_successfully(browser):
"""
Requires: User is on the Google Chrome downloads tab
Wait is added to make sure that download process is already st
📸 Failure Screenshot:
⏱️ Duration: 567.70s
❌ Error:
fixturefunc = <function back_to_editor_discard at 0x7f6954ce9000>
request = <FixtureRequest for <Function test_w03_customize_a_video_and_render_it__release>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="33afc153b6d5aa034cf41d4fc5ab9a86")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_editor_page.py:454: in back_to_editor_discard
bs_fail_with_traceback(browser, back_to_editor_discard, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_editor_page.py:452: in back_to_editor_discard
go_back_to_editor_then_discard(browser)
pages/editor_page.py:1331: in go_back_to_editor_then_discard
drag_and_drop(browser, TIMELINE_HANDLE_RIGHT, TIMELINE_HANDLE_RIGHT_15_SECS)
helpers/common_helpers.py:438: in drag_and_drop
source = WebDriverWait(browser, sec).until(
venv/lib/python3.10/site-packages/selenium/webdriver/support/wait.py:92: in until
value = method(self._driver)
venv/lib/python3.10/site-packages/selenium/webdriver/support/expected_conditions.py:150: in _predicate
return _element_if_
⏱️ Duration: 397.84s
❌ Error:
fixturefunc = <function verify_pricing_editorial_nav at 0x7f6954ce9360>
request = <FixtureRequest for <Function test_w08_verify_editorial_clip_used_popup_is_displayed_for_a_paid_user>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="4250f487472196197bf2f737fab9eb83")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_editor_page.py:470: in verify_pricing_editorial_nav
bs_fail_with_traceback(browser, verify_pricing_editorial_nav, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_editor_page.py:468: in verify_pricing_editorial_nav
check_pricing_and_publish_page_editorial_suite(browser)
pages/newcancellation_page.py:147: in check_pricing_and_publish_page_editorial_suite
check_pricing_and_publish_page_editorial(browser)
pages/newcancellation_page.py:137: in check_pricing_and_publish_page_editorial
do_click(browser, EDITORIAL_VIDEO_IS_READY_CONTINUE_BTN, 40)
helpers/common_helpers.py:200: in do_click
WebDriverWait(browser, sec, poll_frequency=0.4).until(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
📸 Failure Screenshot:
⏱️ Duration: 305.14s
❌ Error:
fixturefunc = <function verify_file_downloaded at 0x7f6954b42cb0>
request = <FixtureRequest for <Function test_w29_download_a_video_from_the_publish_page[streaming_full_hd]>>
kwargs = {'browser': <selenium.webdriver.remote.webdriver.WebDriver (session="f061c919bcd6b38292916a340ab18a39")>}
def call_fixture_func(
fixturefunc: "_FixtureFunc[FixtureValue]", request: FixtureRequest, kwargs
) -> FixtureValue:
if is_generator(fixturefunc):
fixturefunc = cast(
Callable[..., Generator[FixtureValue, None, None]], fixturefunc
)
generator = fixturefunc(**kwargs)
try:
fixture_result = next(generator)
except StopIteration:
raise ValueError(f"{request.fixturename} did not yield a value") from None
finalizer = functools.partial(_teardown_yield_fixture, fixturefunc, generator)
request.addfinalizer(finalizer)
else:
fixturefunc = cast(Callable[..., FixtureValue], fixturefunc)
> fixture_result = fixturefunc(**kwargs)
venv/lib/python3.10/site-packages/_pytest/fixtures.py:917:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_planner_page.py:712: in verify_file_downloaded
bs_fail_with_traceback(browser, verify_file_downloaded, e)
helpers/common_helpers.py:815: in bs_fail_with_traceback
raise exception
tests/test_planner_page.py:710: in verify_file_downloaded
assert_file_downloaded(browser)
helpers/common_helpers.py:1269: in assert_file_downloaded
files_downloaded_successfully(browser)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
browser = <selenium.webdriver.remote.webdriver.WebDriver (session="f061c919bcd6b38292916a340ab18a39")>
def files_downloaded_successfully(browser):
"""
Requires: User is on the Google Chrome downloads tab
Wait is added to make sure that download process is
📸 Failure Screenshot: