本文整理汇总了Python中pages.generic_feedback_form.GenericFeedbackFormPage.click_moreinfo_next方法的典型用法代码示例。如果您正苦于以下问题:Python GenericFeedbackFormPage.click_moreinfo_next方法的具体用法?Python GenericFeedbackFormPage.click_moreinfo_next怎么用?Python GenericFeedbackFormPage.click_moreinfo_next使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pages.generic_feedback_form.GenericFeedbackFormPage
的用法示例。
在下文中一共展示了GenericFeedbackFormPage.click_moreinfo_next方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_submit_sad_feedback
# 需要导入模块: from pages.generic_feedback_form import GenericFeedbackFormPage [as 别名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import click_moreinfo_next [as 别名]
def test_submit_sad_feedback(self, mozwebqa):
timestamp = str(time.time())
desc = 'input-tests testing sad feedback ' + timestamp
url = 'http://sad.example.com/' + timestamp
# 1. go to the feedback form
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
# 2. click on sad
feedback_pg.click_sad_feedback()
# 3. fill out description and url
feedback_pg.set_description(desc)
feedback_pg.set_url(url)
feedback_pg.click_moreinfo_next()
# 4. fill in email address
feedback_pg.check_email_checkbox()
feedback_pg.set_email('[email protected]')
# 5. submit
thanks_pg = feedback_pg.submit(expect_success=True)
Assert.true(thanks_pg.is_the_current_page)
# 6. verify
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
Assert.equal(resp.type.strip(), 'Sad')
Assert.equal(resp.body.strip(), desc.strip())
Assert.equal(resp.locale.strip(), 'English (US)')
Assert.equal(resp.site.strip(), 'example.com')
示例2: test_email_verification
# 需要导入模块: from pages.generic_feedback_form import GenericFeedbackFormPage [as 别名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import click_moreinfo_next [as 别名]
def test_email_verification(self, mozwebqa):
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
feedback_pg.click_happy_feedback()
feedback_pg.set_description('ou812')
feedback_pg.click_moreinfo_next()
feedback_pg.check_email_checkbox()
valid = [
'',
'[email protected]',
'[email protected]',
'[email protected]'
]
for email in valid:
feedback_pg.set_email(email)
Assert.true(feedback_pg.is_email_valid)
invalid = [
'[email protected]',
'[email protected]',
]
for email in invalid:
feedback_pg.set_email(email)
Assert.false(feedback_pg.is_email_valid)
示例3: test_submit_happy_feedback_with_unicode
# 需要导入模块: from pages.generic_feedback_form import GenericFeedbackFormPage [as 别名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import click_moreinfo_next [as 别名]
def test_submit_happy_feedback_with_unicode(self, mozwebqa):
"""Fill out happy feedback with unicode description"""
timestamp = unicode(time.time())
desc = u'input-tests testing happy feedback with unicode \u2603'
desc = desc + u' ' + timestamp
# 1. go to the feedback form
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
# 2. click on happy
feedback_pg.click_happy_feedback()
# 3. fill out description and url
feedback_pg.set_description(desc)
feedback_pg.click_moreinfo_next()
# 4. submit
thanks_pg = feedback_pg.submit(expect_success=True)
Assert.true(thanks_pg.is_the_current_page)
# 5. verify
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
Assert.equal(resp.type.strip(), 'Happy')
Assert.equal(resp.body.strip(), desc.strip())
示例4: test_back_and_forth
# 需要导入模块: from pages.generic_feedback_form import GenericFeedbackFormPage [as 别名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import click_moreinfo_next [as 别名]
def test_back_and_forth(self, mozwebqa):
"""Test next and back buttons"""
desc = 'input-tests testing'
# 1. go to the feedback form
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
# 2. click on happy
feedback_pg.click_happy_feedback()
# 3. click back and happy again
feedback_pg.click_moreinfo_back()
feedback_pg.click_happy_feedback()
# 4. check next button is disabled, fill out description,
# check next button is enabled and move on
Assert.false(feedback_pg.is_moreinfo_next_enabled)
feedback_pg.set_description(desc)
Assert.true(feedback_pg.is_moreinfo_next_enabled)
feedback_pg.click_moreinfo_next()
# 5. click back and next again
feedback_pg.click_email_back()
feedback_pg.click_moreinfo_next()
示例5: test_submitting_same_feedback_twice
# 需要导入模块: from pages.generic_feedback_form import GenericFeedbackFormPage [as 别名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import click_moreinfo_next [as 别名]
def test_submitting_same_feedback_twice(self, mozwebqa):
"""Submitting the same feedback twice ignores the second"""
timestamp = str(time.time())
desc = 'input-tests testing repeat feedback ' + timestamp
# Submit the feedback the first time
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
feedback_pg.click_happy_feedback()
feedback_pg.set_description(desc)
feedback_pg.click_moreinfo_next()
thanks_pg = feedback_pg.submit(expect_success=True)
Assert.true(thanks_pg.is_the_current_page)
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
Assert.equal(resp.body.strip(), desc.strip())
first_id = resp.response_id.strip()
# Submit it a second time--we get the Thank You page again and
# it looks identical to the first time.
feedback_pg = GenericFeedbackFormPage(mozwebqa)
feedback_pg.go_to_feedback_page()
feedback_pg.click_happy_feedback()
feedback_pg.set_description(desc)
feedback_pg.click_moreinfo_next()
thanks_pg = feedback_pg.submit(expect_success=True)
Assert.true(thanks_pg.is_the_current_page)
# Check the dashboard again and make sure the most recent
# response has the same created time as the first time. If it
# does, then
dashboard_pg = DashboardPage(mozwebqa)
dashboard_pg.go_to_dashboard_page()
dashboard_pg.search_for(desc)
resp = dashboard_pg.messages[0]
Assert.equal(resp.body.strip(), desc.strip())
second_id = resp.response_id.strip()
# The two ids should be the same because the second response
# didn't go through.
Assert.equal(first_id, second_id)