⏱️ Duration: 15.76s
❌ Error:
self = <tests.test_web_signup.TestWebSignup object at 0x7f92bdd3d570>
sign_up_page = <pages.sign_up_page.SignUpPage object at 0x7f92bdd3df90>
create_page = <pages.create_page.CreatePage object at 0x7f92bdd3df00>
editor_page = <pages.editor_page.EditorPage object at 0x7f92bdd3de70>
pricing_page = <pages.pricing_page.PricingPage object at 0x7f92bdd33370>
my_account_page = <pages.my_account_page.MyAccountPage object at 0x7f92bdd33250>
base_url = 'https://promo.com'
def test_w06_signup_verify_premium_tags_and_pricing(
self, sign_up_page, create_page, editor_page, pricing_page, my_account_page, base_url
):
"""
W06 Signup verify premium tags and see pricing
Feature scenario:
Given I generate a random email for sign up
When I create a new account new auth
When I close onboarding wizard
And I go to create page from header
When I provide "summer" in the search input
And I customize the video
Then I verify navigation to editor page new user
And I am filtering premium videos
When I Publish the video
Then I verify pricing/publish navigation new user
Then I close prod pricing page
When I go to my account
Then I delete my account new
"""
random_email = f"promo.auto.w06.{uuid.uuid4().hex[:8]}@promo.com"
> sign_up_page.create_account(
base_url=base_url,
email=random_email,
full_name=fullname,
password=random_password,
)
tests/test_web_signup.py:83:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <pages.sign_up_page.SignUpPage object at 0x7f92bdd3df90>
base_url = 'https://promo.com', email = 'promo.auto.w06.4225da6c@promo.com'
full_name = 'Automate Promo', password = '123456789'
def create_account(self, base_url: str, email: str, full_name: str, password: str):
"""
Creat
📸 Failure Screenshot:
⏱️ Duration: 16.73s
❌ Error:
self = <tests.test_web_signup.TestWebSignup object at 0x7f92bdd3ff70>
sign_up_page = <pages.sign_up_page.SignUpPage object at 0x7f92b78210f0>
create_page = <pages.create_page.CreatePage object at 0x7f92b7821c90>
editor_page = <pages.editor_page.EditorPage object at 0x7f92b7821b40>
pricing_page = <pages.pricing_page.PricingPage object at 0x7f92b78214b0>
my_account_page = <pages.my_account_page.MyAccountPage object at 0x7f92b7822020>
base_url = 'https://promo.com'
def test_w07_signup_verify_editorial_tags_and_pricing(
self, sign_up_page, create_page, editor_page, pricing_page, my_account_page, base_url
):
"""
W07 Signup verify editorial tags and see pricing (release test)
Feature scenario:
Given I generate a random email for sign up
When I create a new account new auth
When I close onboarding wizard
And I go to create page from header
And I am filtering editorial videos and photos on create page
And I customize the video
Then I verify navigation to editor page new user
And I am filtering editorial videos and photos
When I Publish the video
Then I verify pricing/publish navigation new user
Then I close prod pricing page
When I go to my account
Then I delete my account new
"""
random_email = f"promo.auto.w07.{uuid.uuid4().hex[:8]}@promo.com"
> sign_up_page.create_account(
base_url=base_url,
email=random_email,
full_name=fullname,
password=random_password,
)
tests/test_web_signup.py:128:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <pages.sign_up_page.SignUpPage object at 0x7f92b78210f0>
base_url = 'https://promo.com', email = 'promo.auto.w07.b6e5a8ba@promo.com'
full_name = 'Automate Promo', password = '123456789'
def create_account(self, base_url: str, email: str, full_n
📸 Failure Screenshot: