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


Python GaiaMtbfTestCase.tearDown方法代码示例

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


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

示例1: tearDown

# 需要导入模块: from mtbf_driver.MtbfTestCase import GaiaMtbfTestCase [as 别名]
# 或者: from mtbf_driver.MtbfTestCase.GaiaMtbfTestCase import tearDown [as 别名]
    def tearDown(self):

        # In case the assertion fails this will still kill the call
        # An open call creates problems for future tests
        self.data_layer.kill_active_call()

        GaiaMtbfTestCase.tearDown(self)
开发者ID:Mozilla-TWQA,项目名称:MTBF-Driver,代码行数:9,代码来源:test_mtbf_call_log_all_calls.py

示例2: tearDown

# 需要导入模块: from mtbf_driver.MtbfTestCase import GaiaMtbfTestCase [as 别名]
# 或者: from mtbf_driver.MtbfTestCase.GaiaMtbfTestCase import tearDown [as 别名]
    def tearDown(self):
        # make sure it goes back to the top for activating editing mode
        self.device.touch_home_button()
        self.device.touch_home_button()

        # delete the bookmark
        self.apps.switch_to_displayed_app()
        self.homescreen.activate_edit_mode()
        self.confirm_dialog = self.homescreen.installed_app(self.bookmark_title).tap_delete_app()
        self.confirm_dialog.tap_confirm()

        self.data_layer.disable_wifi()
        GaiaMtbfTestCase.tearDown(self)
开发者ID:nhirata,项目名称:MTBF-Driver,代码行数:15,代码来源:test_mtbf_browser_bookmark.py

示例3: tearDown

# 需要导入模块: from mtbf_driver.MtbfTestCase import GaiaMtbfTestCase [as 别名]
# 或者: from mtbf_driver.MtbfTestCase.GaiaMtbfTestCase import tearDown [as 别名]
 def tearDown(self):
     GaiaMtbfTestCase.tearDown(self)
开发者ID:alison-shiue,项目名称:MTBF-Driver,代码行数:4,代码来源:test_mtbf_settings_bt.py

示例4: tearDown

# 需要导入模块: from mtbf_driver.MtbfTestCase import GaiaMtbfTestCase [as 别名]
# 或者: from mtbf_driver.MtbfTestCase.GaiaMtbfTestCase import tearDown [as 别名]
 def tearDown(self):
     self.device.touch_home_button()
     self.device.touch_home_button()
     GaiaMtbfTestCase.tearDown(self)
开发者ID:mwargers,项目名称:MTBF-Driver,代码行数:6,代码来源:test_mtbf_cards_view_kill_apps_with_two_apps.py

示例5: tearDown

# 需要导入模块: from mtbf_driver.MtbfTestCase import GaiaMtbfTestCase [as 别名]
# 或者: from mtbf_driver.MtbfTestCase.GaiaMtbfTestCase import tearDown [as 别名]
 def tearDown(self):
     self.data_layer.disable_wifi()
     GaiaMtbfTestCase.tearDown(self)
开发者ID:Mozilla-TWQA,项目名称:MTBF-Driver,代码行数:5,代码来源:test_mtbf_browser_search.py

示例6: tearDown

# 需要导入模块: from mtbf_driver.MtbfTestCase import GaiaMtbfTestCase [as 别名]
# 或者: from mtbf_driver.MtbfTestCase.GaiaMtbfTestCase import tearDown [as 别名]
 def tearDown(self):
     self.data_layer.disable_cell_data()
     GaiaMtbfTestCase.tearDown(self)
开发者ID:Mozilla-TWQA,项目名称:MTBF-Driver,代码行数:5,代码来源:test_mtbf_browser_clear_browsing_history.py

示例7: tearDown

# 需要导入模块: from mtbf_driver.MtbfTestCase import GaiaMtbfTestCase [as 别名]
# 或者: from mtbf_driver.MtbfTestCase.GaiaMtbfTestCase import tearDown [as 别名]
 def tearDown(self):
     if hasattr(self, "message_thread"):
         self.apps.switch_to_displayed_app()
         self.message_thread.tap_back_button()
     GaiaMtbfTestCase.tearDown(self)
开发者ID:alison-shiue,项目名称:MTBF-Driver,代码行数:7,代码来源:test_mtbf_sms.py

示例8: tearDown

# 需要导入模块: from mtbf_driver.MtbfTestCase import GaiaMtbfTestCase [as 别名]
# 或者: from mtbf_driver.MtbfTestCase.GaiaMtbfTestCase import tearDown [as 别名]
 def tearDown(self):
     self.marionette.switch_to_frame()
     self.data_layer.disable_cell_data()
     GaiaMtbfTestCase.tearDown(self)
开发者ID:Mozilla-TWQA,项目名称:MTBF-Driver,代码行数:6,代码来源:test_mtbf_browser_cell_data.py

示例9: tearDown

# 需要导入模块: from mtbf_driver.MtbfTestCase import GaiaMtbfTestCase [as 别名]
# 或者: from mtbf_driver.MtbfTestCase.GaiaMtbfTestCase import tearDown [as 别名]
    def tearDown(self):
        if self.fm_radio.is_power_button_on:
            self.fm_radio.tap_power_button()

        GaiaMtbfTestCase.tearDown(self)
开发者ID:Mozilla-TWQA,项目名称:MTBF-Driver,代码行数:7,代码来源:test_mtbf_fmradio_turn_on_off.py


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