本文整理汇总了Python中gaiatest.apps.browser.app.Browser.switch_to_bookmark_edit_dialog方法的典型用法代码示例。如果您正苦于以下问题:Python Browser.switch_to_bookmark_edit_dialog方法的具体用法?Python Browser.switch_to_bookmark_edit_dialog怎么用?Python Browser.switch_to_bookmark_edit_dialog使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gaiatest.apps.browser.app.Browser
的用法示例。
在下文中一共展示了Browser.switch_to_bookmark_edit_dialog方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_browser_bookmark
# 需要导入模块: from gaiatest.apps.browser.app import Browser [as 别名]
# 或者: from gaiatest.apps.browser.app.Browser import switch_to_bookmark_edit_dialog [as 别名]
def test_browser_bookmark(self):
# https://github.com/mozilla/gaia-ui-tests/issues/452
browser = Browser(self.marionette)
browser.launch()
browser.go_to_url('http://mozqa.com/data/firefox/layout/mozilla.html')
browser.tap_bookmark_button()
browser.tap_add_bookmark_to_home_screen_choice_button()
browser.switch_to_bookmark_edit_dialog()
browser.type_bookmark_title(self.bookmark_title)
browser.tap_add_bookmark_to_home_screen_dialog_button()
# Switch to Home Screen to look for bookmark
self.marionette.switch_to_frame()
self.marionette.execute_script("window.wrappedJSObject.dispatchEvent(new Event('home'));")
self.marionette.switch_to_frame(self.marionette.find_element(*self._homescreen_frame_locator))
# check whether bookmark was added
bookmark_added = False
while self._homescreen_has_more_pages:
if self.is_element_displayed(self._homescreen_icon_locator[0], self._homescreen_icon_locator[1] % self.bookmark_title):
bookmark_added = True
break
self._go_to_next_page()
self.assertTrue(bookmark_added, 'The bookmark %s was not found to be installed on the home screen.' % self.bookmark_title)