當前位置: 首頁>>代碼示例>>Python>>正文


Python GenericFeedbackFormPage.set_email方法代碼示例

本文整理匯總了Python中pages.generic_feedback_form.GenericFeedbackFormPage.set_email方法的典型用法代碼示例。如果您正苦於以下問題:Python GenericFeedbackFormPage.set_email方法的具體用法?Python GenericFeedbackFormPage.set_email怎麽用?Python GenericFeedbackFormPage.set_email使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pages.generic_feedback_form.GenericFeedbackFormPage的用法示例。


在下文中一共展示了GenericFeedbackFormPage.set_email方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_submit_sad_feedback

# 需要導入模塊: from pages.generic_feedback_form import GenericFeedbackFormPage [as 別名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import set_email [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')
開發者ID:KrystalYu,項目名稱:fjord,代碼行數:36,代碼來源:test_submit.py

示例2: test_email_verification

# 需要導入模塊: from pages.generic_feedback_form import GenericFeedbackFormPage [as 別名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import set_email [as 別名]
    def test_email_verification(self, mozwebqa):
        feedback_pg = GenericFeedbackFormPage(mozwebqa)
        feedback_pg.go_to_feedback_page('firefox')

        feedback_pg.click_happy_feedback()
        feedback_pg.set_description('ou812')
        feedback_pg.check_email_checkbox()

        valid = [
            '',
            '[email protected]',
            '[email protected]',
            '[email protected]'
        ]
        for email in valid:
            feedback_pg.set_email(email)
            assert feedback_pg.is_email_valid, email

        invalid = [
            '[email protected]',
            '[email protected]',
        ]
        for email in invalid:
            feedback_pg.set_email(email)
            assert feedback_pg.is_email_valid is False, email
開發者ID:Givemore,項目名稱:fjord,代碼行數:27,代碼來源:test_validation.py

示例3: test_submit_sad_feedback

# 需要導入模塊: from pages.generic_feedback_form import GenericFeedbackFormPage [as 別名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import set_email [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("firefox")

        # 2. click on sad
        feedback_pg.click_sad_feedback()

        # 3. fill out description, url, email checkbox and email
        # address
        feedback_pg.set_description(desc)
        feedback_pg.set_url(url)
        feedback_pg.check_email_checkbox()
        feedback_pg.set_email("[email protected]")

        # 4. submit
        thanks_pg = feedback_pg.submit(expect_success=True)
        assert 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 resp.type.strip() == "Sad"
        assert resp.body.strip() == desc.strip()
        assert resp.locale.strip() == "English (US)"
        assert resp.site.strip() == "example.com"
開發者ID:Givemore,項目名稱:fjord,代碼行數:34,代碼來源:test_submit.py

示例4: test_email_verification

# 需要導入模塊: from pages.generic_feedback_form import GenericFeedbackFormPage [as 別名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import set_email [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)
開發者ID:KrystalYu,項目名稱:fjord,代碼行數:29,代碼來源:test_validation.py

示例5: test_submit_happy_feedback

# 需要導入模塊: from pages.generic_feedback_form import GenericFeedbackFormPage [as 別名]
# 或者: from pages.generic_feedback_form.GenericFeedbackFormPage import set_email [as 別名]
    def test_submit_happy_feedback(self, mozwebqa):
        timestamp = str(time.time())
        desc = 'input-tests testing happy feedback ' + timestamp
        url = 'http://happy.example.com/' + timestamp

        # 1. go to the feedback form
        feedback_pg = GenericFeedbackFormPage(mozwebqa)
        feedback_pg.go_to_feedback_page('firefox')

        # Verify there is a privacy link
        feedback_pg.has_privacy_link

        # 2. click on happy
        feedback_pg.click_happy_feedback()

        # 3. fill out description, url, email checkbox and email
        # address
        feedback_pg.has_privacy_link
        feedback_pg.set_description(desc)
        feedback_pg.set_url(url)
        feedback_pg.check_email_checkbox()
        feedback_pg.set_email('[email protected]')

        # 4. submit
        thanks_pg = feedback_pg.submit(expect_success=True)
        assert 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 resp.type.strip() == 'Happy'
        assert resp.body.strip() == desc.strip()
        assert resp.locale.strip() == 'English (US)'
        assert resp.site.strip() == 'example.com'
開發者ID:hoosteeno,項目名稱:fjord,代碼行數:38,代碼來源:test_submit.py


注:本文中的pages.generic_feedback_form.GenericFeedbackFormPage.set_email方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。