当前位置: 首页>>代码示例>>Python>>正文


Python Marketplace.enter_feedback方法代码示例

本文整理汇总了Python中marketplacetests.marketplace.app.Marketplace.enter_feedback方法的典型用法代码示例。如果您正苦于以下问题:Python Marketplace.enter_feedback方法的具体用法?Python Marketplace.enter_feedback怎么用?Python Marketplace.enter_feedback使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在marketplacetests.marketplace.app.Marketplace的用法示例。


在下文中一共展示了Marketplace.enter_feedback方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: TestMarketplaceFeedback

# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import enter_feedback [as 别名]
class TestMarketplaceFeedback(GaiaTestCase):
    MARKETPLACE_DEV_NAME = 'Marketplace Dev'
    feedback_submitted_message = u'Feedback submitted. Thanks!'
    test_comment = 'This is a test comment.'

    def setUp(self):
        GaiaTestCase.setUp(self)
        self.connect_to_network()
        self.install_marketplace()

    def test_marketplace_feedback_anonymous(self):
        # launch marketplace dev and go to marketplace
        self.marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
        self.marketplace.launch()

        # wait for settings button to come out
        self.marketplace.wait_for_setting_displayed()
        settings = self.marketplace.tap_settings()
        self.marketplace.select_setting_feedback()

        # enter and submit your feedback
        self.marketplace.enter_feedback(self.test_comment)
        self.marketplace.submit_feedback()

        # catch the notification
        self.marketplace.wait_for_notification_message_displayed()
        message_content = self.marketplace.notification_message

        # verify if the notification is right
        self.assertEqual(message_content, self.feedback_submitted_message)
开发者ID:AlinT,项目名称:marketplace-tests-gaia,代码行数:32,代码来源:test_marketplace_feedback_anonymous.py

示例2: TestMarketplaceFeedback

# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import enter_feedback [as 别名]
class TestMarketplaceFeedback(GaiaTestCase):
    MARKETPLACE_DEV_NAME = 'Marketplace Dev'
    feedback_submitted_message = u'Feedback submitted. Thanks!'
    test_comment = 'This is a test comment.'

    def setUp(self):
        GaiaTestCase.setUp(self)
        self.connect_to_network()
        self.install_marketplace()

        self.user = PersonaTestUser().create_user(verified=True,
                                                  env={"browserid": "firefoxos.persona.org", "verifier": "marketplace-dev.allizom.org"})

    def test_marketplace_feedback_user(self):
        # launch marketplace dev and go to marketplace
        self.marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
        self.marketplace.launch()

        # wait for settings button to come out
        self.marketplace.wait_for_setting_displayed()
        settings = self.marketplace.tap_settings()

        # sign in with persona
        persona = settings.tap_sign_in()
        persona.login(self.user.email, self.user.password)

        # switch back to Marketplace
        self.marionette.switch_to_frame()
        self.marketplace.launch()

        # go to feedback tab
        self.marketplace.select_setting_feedback()

        # enter and submit your feedback
        self.marketplace.enter_feedback(self.test_comment)
        self.marketplace.submit_feedback()

        # catch the notification
        self.marketplace.wait_for_notification_message_displayed()
        message_content = self.marketplace.notification_message

        # verify if the notification is right
        self.assertEqual(message_content, self.feedback_submitted_message)
开发者ID:AlinT,项目名称:marketplace-tests-gaia,代码行数:45,代码来源:test_marketplace_feedback_login.py

示例3: test_marketplace_feedback_user

# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import enter_feedback [as 别名]
    def test_marketplace_feedback_user(self):
        username = self.testvars['marketplace']['username']
        password = self.testvars['marketplace']['password']

        # launch marketplace dev and go to marketplace
        marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
        marketplace.launch()
        marketplace.login(username, password)

        # go to feedback tab
        marketplace.select_setting_feedback()

        # enter and submit your feedback
        marketplace.enter_feedback(self.test_comment)
        marketplace.submit_feedback()

        # catch the notification
        marketplace.wait_for_notification_message_displayed()
        message_content = marketplace.notification_message

        # verify if the notification is right
        self.assertEqual(message_content, self.feedback_submitted_message)
开发者ID:bobsilverberg,项目名称:marketplace-tests-gaia,代码行数:24,代码来源:test_marketplace_feedback_login.py

示例4: TestMarketplaceFeedback

# 需要导入模块: from marketplacetests.marketplace.app import Marketplace [as 别名]
# 或者: from marketplacetests.marketplace.app.Marketplace import enter_feedback [as 别名]
class TestMarketplaceFeedback(MarketplaceGaiaTestCase):
    feedback_submitted_message = u'Feedback submitted. Thanks!'
    test_comment = 'This is a test comment.'

    def test_marketplace_feedback_anonymous(self):

        # launch marketplace dev and go to marketplace
        self.marketplace = Marketplace(self.marionette, self.MARKETPLACE_DEV_NAME)
        self.marketplace.launch()

        # go to settings page
        self.marketplace.tap_settings()
        self.marketplace.select_setting_feedback()

        # enter and submit your feedback
        self.marketplace.enter_feedback(self.test_comment)
        self.marketplace.submit_feedback()

        # catch the notification
        self.marketplace.wait_for_notification_message_displayed()
        message_content = self.marketplace.notification_message

        # verify if the notification is right
        self.assertEqual(message_content, self.feedback_submitted_message)
开发者ID:bobsilverberg,项目名称:marketplace-tests-gaia,代码行数:26,代码来源:test_marketplace_feedback_anonymous.py


注:本文中的marketplacetests.marketplace.app.Marketplace.enter_feedback方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。