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


Python FirefoxTestCase.tearDown方法代碼示例

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


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

示例1: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     # Close the autocomplete results
     try:
         self.browser.navbar.locationbar.autocomplete_results.close()
         self.places.restore_default_bookmarks()
     finally:
         FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:9,代碼來源:test_suggest_bookmarks.py

示例2: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     try:
         self.browser.switch_to()
         self.identity_popup.close(force=True)
         self.windows.close_all([self.browser])
     finally:
         FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:9,代碼來源:test_dv_certificate.py

示例3: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     try:
         self.identity_popup.close(force=True)
     except NoSuchElementException:
         # TODO: A NoSuchElementException may be thrown here when tests accessing the
         # identity_popup.popup element are skipped.
         pass
     finally:
         FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:11,代碼來源:test_toolbars.py

示例4: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     try:
         self.utils.remove_perms('www.itisatrap.org', 'safe-browsing')
         self.browser.tabbar.close_all_tabs([self.browser.tabbar.tabs[0]])
     finally:
         FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:8,代碼來源:test_safe_browsing_notification.py

示例5: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     try:
         self.places.restore_default_bookmarks()
         self.places.remove_all_history()
     finally:
         FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:8,代碼來源:test_places.py

示例6: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:4,代碼來源:test_l10n.py

示例7: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     try:
         self.windows.close_all([self.browser])
     finally:
         FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:7,代碼來源:test_update_wizard.py

示例8: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     try:
         self.software_update.update_channel.default_channel = self.saved_channel
     finally:
         FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:7,代碼來源:test_software_update.py

示例9: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     try:
         self.browser.tabbar.close_all_tabs([self.browser.tabbar.tabs[0]])
     finally:
         FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:7,代碼來源:test_tabbar.py

示例10: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     try:
         self.marionette.execute_script("arguments[0].hidePopup();",
                                        script_args=[self.locationbar.notification_popup])
     finally:
         FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:8,代碼來源:test_mixed_script_content_blocking.py

示例11: tearDown

# 需要導入模塊: from firefox_ui_harness.testcase import FirefoxTestCase [as 別名]
# 或者: from firefox_ui_harness.testcase.FirefoxTestCase import tearDown [as 別名]
 def tearDown(self):
     self.prefs.restore_pref(homepage_pref)
     FirefoxTestCase.tearDown(self)
開發者ID:Kavit900,項目名稱:firefox-ui-tests,代碼行數:5,代碼來源:test_home_button.py


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