本文整理匯總了Python中gaiatest.apps.system.regions.cards_view.CardsView.wait_for_no_card_displayed方法的典型用法代碼示例。如果您正苦於以下問題:Python CardsView.wait_for_no_card_displayed方法的具體用法?Python CardsView.wait_for_no_card_displayed怎麽用?Python CardsView.wait_for_no_card_displayed使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gaiatest.apps.system.regions.cards_view.CardsView
的用法示例。
在下文中一共展示了CardsView.wait_for_no_card_displayed方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: TestCardsViewTwoApps
# 需要導入模塊: from gaiatest.apps.system.regions.cards_view import CardsView [as 別名]
# 或者: from gaiatest.apps.system.regions.cards_view.CardsView import wait_for_no_card_displayed [as 別名]
class TestCardsViewTwoApps(GaiaImageCompareTestCase):
def setUp(self):
GaiaImageCompareTestCase.setUp(self)
self.cards_view = CardsView(self.marionette)
self.contacts = Contacts(self.marionette)
self.contacts.launch()
self.gallery = Gallery(self.marionette)
self.gallery.launch(empty=True)
# 10 seconds for the actual user using the app a bit, and going back to homescreen
time.sleep(10)
self.device.touch_home_button()
def test_cards_view_kill_apps_with_two_apps(self):
"""https://moztrap.mozilla.org/manage/case/1917/"""
# Pull up the cards view
self.device.hold_home_button()
self.cards_view.wait_for_cards_view()
# Wait for first app ready
self.cards_view.cards[1].wait_for_centered()
self.take_screenshot(top_frame=True)
# Close the current apps from the cards view
self.cards_view.cards[1].close()
self.cards_view.cards[0].wait_for_centered()
self.take_screenshot(top_frame=True)
self.cards_view.cards[0].close()
self.cards_view.wait_for_cards_view_not_displayed()
self.take_screenshot(top_frame=True)
# If successfully killed, the apps should no longer appear in the cards view
# and the "No recent apps" message should be displayed
self.device.hold_home_button()
self.cards_view.wait_for_no_card_displayed()
self.take_screenshot(top_frame=True)
self.assertEqual(len(self.cards_view.cards), 0)
self.assertTrue(self.cards_view.is_no_card_displayed)