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


Python GenericFeedbackFormPage.click_moreinfo_back方法代碼示例

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


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

示例1: test_back_and_forth

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


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