示例#1
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(expected.element_displayed(
         Wait(self.marionette).until(expected.element_present(
             *self._actions_menu_locator))))
     # TODO Difficult intermittent bug 977052
     time.sleep(1)
示例#2
0
文件: app.py 项目: Anshdesire/gaia
 def launch(self):
     Base.launch(self)
     Wait(self.marionette).until(
         expected.element_displayed(
             Wait(self.marionette).until(expected.element_present(*self._visible_clock_locator))
         )
     )
示例#3
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_to_be_displayed()
     self.apps.switch_to_displayed_app()
     element = Wait(self.marionette).until(
         expected.element_present(*self._panel_conversationview_locator))
     Wait(self.marionette).until(lambda m: element.rect['x'] == 0 and element.is_displayed())
示例#4
0
文件: google.py 项目: AaskaShah/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.switch_to_frame()
     # wait for the page to load
     email = Wait(self.marionette).until(
         expected.element_present(*self._email_locator))
     Wait(self.marionette).until(lambda m: email.get_attribute('value') != '')
示例#5
0
文件: app.py 项目: AaskaShah/gaia
 def launch(self, empty=False):
     Base.launch(self)
     self.wait_for_element_not_displayed(*self._progress_bar_locator)
     if empty:
         self.wait_for_overlay_to_show()
     else:
         self.wait_for_thumbnail_view_to_load()
示例#6
0
 def launch(self, expect_success=True):
     Base.launch(self, launch_timeout=120000)
     self.wait_for_element_not_displayed(*self._loading_fragment_locator)
     if expect_success:
         self.switch_to_marketplace_frame()
         from marketplacetests.marketplace.pages.home import Home
         return Home(self.marionette)
示例#7
0
    def __init__(self, marionette):
        Base.__init__(self, marionette)

        # there are two type of tiles - main and sub.  There should be at least one main tile
        self.marionette.switch_to_frame(self.marionette.find_element(*self._active_view_locator))
        Wait(self.marionette).until(expected.element_displayed(*self._tile_group_locator))
        self.apps.switch_to_displayed_app()
示例#8
0
 def __init__(self, marionette, bolScrollingCheck=True):
     Base.__init__(self, marionette)
     if bolScrollingCheck:
         Wait(self.marionette).until(
             lambda m: self.marionette.find_element(*self._view_locator).get_attribute('class') == 'scrolling')
     Wait(self.marionette).until(
         lambda m: self.marionette.find_element(*self._view_locator).get_attribute('class') != 'scrolling')
示例#9
0
文件: app.py 项目: Thatoo/gaia
 def launch(self):
     Base.launch(self)
     Wait(self.marionette).until(
         expected.element_displayed(
             Wait(self.marionette).until(expected.element_present(*self._settings_button_locator))
         )
     )
示例#10
0
文件: passcode_pad.py 项目: 4gh/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     lockscreen_passcode_pad = self.marionette.find_element(*self._lockscreen_passcode_pad_locator)
     emergency_button = self.marionette.find_element(*self._emergency_button_locator)
     # wait button * 4 rows === the pad's height
     self.wait_for_condition(lambda m: lockscreen_passcode_pad.size['height'] ==
           (4 * emergency_button.size['height']))
示例#11
0
    def __init__(self, marionette):
        Base.__init__(self, marionette)
        self.marionette.switch_to_frame()
        Wait(self.marionette).until(expected.element_displayed(*self._hour_picker_locator))

        # TODO: wait for the time picker to fade in Bug 1038186
        time.sleep(2)
示例#12
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(
         expected.element_displayed(
             Wait(self.marionette).until(expected.element_present(*self._current_image_locator))
         )
     )
示例#13
0
 def launch(self):
     Base.launch(self)
     Wait(self.marionette, ignored_exceptions=JavascriptException).until(
         lambda m: m.execute_script('return window.wrappedJSObject.Contacts.asyncScriptsLoaded;') is True)
     Wait(self.marionette).until(expected.element_displayed(
         Wait(self.marionette).until(expected.element_present(
             *self._settings_button_locator))))
示例#14
0
文件: app.py 项目: 6a68/gaia
 def launch(self):
     Base.launch(self)
     # empty message is only displayed after first MonthsDay#render,
     # so we are sure app is "ready" after that
     Wait(self.marionette).until(expected.element_displayed(
         Wait(self.marionette).until(expected.element_present(
             *self._event_list_empty_locator))))
示例#15
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(expected.element_displayed(
         Wait(self.marionette).until(expected.element_present(
             *self._crop_view_locator))))
     done = self.marionette.find_element(*self._crop_done_button_locator)
     Wait(self.marionette).until(expected.element_enabled(done))
示例#16
0
文件: app.py 项目: andreastt/gaia
    def launch(self):
        Base.launch(self)
        Wait(self.marionette).until(
            expected.element_present(*self._app_loaded_locator))

        # Airplane mode is the latest item to be ready
        self.wait_for_airplane_mode_ready()
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(expected.element_displayed(
         Wait(self.marionette).until(expected.element_present(
             *self._contact_import_picker_frame_locator))))
     select_contacts = self.marionette.find_element(*self._contact_import_picker_frame_locator)
     self.marionette.switch_to_frame(select_contacts)
示例#18
0
    def __init__(self, marionette):
        Base.__init__(self, marionette)
        self.marionette.switch_to_frame()
        self.wait_for_element_displayed(*self._current_element(*self._hour_picker_locator))

        # TODO: wait for the time piker to fade in Bug 1038186
        time.sleep(2)
示例#19
0
    def __init__(self, marionette):
        Base.__init__(self, marionette)

        self._switch_to_fxa_iframe()
        input_field = Wait(self.marionette, timeout=60).until(
            expected.element_present(*self._email_page_locator))
        Wait(self.marionette).until(expected.element_displayed(input_field))
        Wait(self.marionette).until(lambda m: input_field.rect['x'] == 0)
示例#20
0
    def __init__(self, marionette):
        Base.__init__(self, marionette)

        Wait(self.marionette).until(
            expected.element_displayed(
                Wait(self.marionette).until(expected.element_present(*self._clear_browsing_history_locator))
            )
        )
示例#21
0
    def launch(self):
        Base.launch(self)
        Wait(self.marionette).until(
            expected.element_present(*self._app_loaded_locator))

        # this is located at the end of the page.  If this is shown, everything is rendered.
        Wait(self.marionette).until(
            expected.element_present(*self._bluetooth_menu_item_locator))
示例#22
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(lambda m: self.apps.displayed_app.src == self._src)
     self.apps.switch_to_displayed_app()
     loading = self.marionette.find_element(*self._collection_loading_locator)
     Wait(self.marionette).until(expected.element_displayed(loading))
     # See Bug 1162112, Marionette Wait() polling without interval might be interfering network load
     Wait(self.marionette, timeout=30, interval=5).until(expected.element_not_displayed(loading))
示例#23
0
文件: app.py 项目: EverythingMe/gaia
 def launch(self):
     Base.launch(self)
     # _currentPanel is set after all handlers are set
     self.wait_for_condition(
         lambda m: m.execute_script(
             "return window.wrappedJSObject.Settings && window.wrappedJSObject.Settings._currentPanel === '#root'"
         )
     )
示例#24
0
文件: app.py 项目: Cwiiis/gaia
    def __init__(self, marionette):
        Base.__init__(self, marionette)
        self.wait_to_be_displayed()
        self.apps.switch_to_displayed_app()

        if self.is_element_present(*self._page_locator):
            Wait(marionette).until(lambda m: self.marionette.find_element(*self._page_locator).
                                   get_attribute('data-ready') == 'true')
示例#25
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.marionette.switch_to_frame()
     self.wait_for_element_present(*self._ff_accounts_frame_locator)
     self.frame = self.marionette.find_element(*self._ff_accounts_frame_locator)
     self.marionette.switch_to_frame(self.frame)
     self.wait_for_element_not_present(*self._body_loading_locator)
     self.wait_for_element_displayed(*self._firefox_logo_locator)
示例#26
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     from gaiatest.apps.gallery.app import Gallery
     Gallery(self.marionette).wait_to_be_displayed()
     self.apps.switch_to_displayed_app()
     Wait(self.marionette).until(expected.element_displayed(
         Wait(self.marionette).until(expected.element_present(
             *self._image_locator))))
示例#27
0
    def __init__(self, marionette):
        Base.__init__(self, marionette)
        Wait(self.marionette).until(lambda m: self.apps.displayed_app.name == 'Gallery')
        self.apps.switch_to_displayed_app()

        Wait(self.marionette).until(expected.element_displayed(
            Wait(self.marionette).until(expected.element_present(
                *self._image_locator))))
示例#28
0
文件: activities.py 项目: axraf/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.marionette.switch_to_frame()
     view = self.marionette.find_element(*self._actions_menu_locator)
     if 'contextmenu' in view.get_attribute('class'):
         # final position is below the status bar
         self.wait_for_condition(lambda m: view.location['y'] == 20)
     else:
         self.wait_for_condition(lambda m: view.location['y'] == 0)
示例#29
0
文件: app.py 项目: Archaeopteryx/gaia
    def launch(self):
        Base.launch(self)
        Wait(self.marionette).until(expected.element_displayed(
            Wait(self.marionette).until(expected.element_present(
                *self._settings_button_locator))))

        # Workaround for bug 1201211
        import time
        time.sleep(1)
示例#30
0
文件: merge.py 项目: nullaus/gaia
    def __init__(self, marionette):
        Base.__init__(self, marionette)
        marionette.switch_to_frame()

        merge_iframe = Wait(marionette).until(expected.element_present(*self._iframe_locator))
        Wait(marionette).until(expected.element_displayed(merge_iframe))
        marionette.switch_to_frame(merge_iframe)

        body = marionette.find_element(*self._body_locator)
        Wait(marionette).until(lambda m: body.rect["y"] == 0)
示例#31
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     title = self.marionette.find_element(*self._welcome_title_locator)
     Wait(self.marionette).until(lambda m: title.location['x'] == 0)
示例#32
0
文件: app.py 项目: zhannett/gaia
 def launch(self):
     Base.launch(self)
     Wait(self.marionette).until(
         expected.element_present(*self._main_frame_locator))
示例#33
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_condition(lambda m: m.find_element(*self._contact_name_title_locator).location['x'] == 0)
示例#34
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     page = self.marionette.find_element(*self._page_locator)
     Wait(self.marionette).until(
         lambda m: page.rect['x'] == 0 and page.is_displayed())
示例#35
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     element = self.marionette.find_element(*self._song_number_locator)
     Wait(self.marionette).until(lambda m: element.location['x'] == 0)
示例#36
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     view = self.marionette.find_element(*self._settings_view_locator)
     Wait(self.marionette).until(lambda m: view.location['y'] == 0)
示例#37
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_add_edit_contact_to_load()
示例#38
0
 def launch(self):
     Base.launch(self)
     self.wait_for_element_not_displayed(*self._loading_fragment_locator)
示例#39
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.marionette.switch_to_frame()
     self.wait_for_element_displayed(*self._actions_menu_locator)
示例#40
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_displayed(*self._crop_view_locator)
     self.wait_for_condition(lambda m: m.find_element(
         *self._crop_done_button_locator).is_enabled())
示例#41
0
文件: app.py 项目: mmalecki/gaia
 def launch(self):
     Base.launch(self)
示例#42
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_displayed(*self._current_image_locator)
示例#43
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     section = self.marionette.find_element(*self._section_locator)
     self.wait_for_condition(lambda m: section.location['x'] == 0)
示例#44
0
 def launch(self):
     Base.launch(self)
     self.wait_for_element_displayed(*self._airplane_switch_locator)
示例#45
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_condition(lambda m: m.find_element(
         *self._cell_data_prompt_container_locator).location['x'] == 0)
示例#46
0
 def __init__(self, marionette):
     marionette.switch_to_frame()
     Base.__init__(self, marionette)
     self.root_element = marionette.find_element(*self._root_locator)
示例#47
0
文件: app.py 项目: yurenju/gaia
 def launch(self):
     Base.launch(self)
     self.wait_for_element_displayed(*self._section_languages_locator)
示例#48
0
文件: app.py 项目: wsdigital/gaia
 def launch(self):
     Base.launch(self)
     Wait(self.marionette, ignored_exceptions=JavascriptException).until(
         lambda m: m.execute_script('return window.wrappedJSObject.Contacts.asyncScriptsLoaded') is True)
     self.wait_for_element_displayed(*self._settings_button_locator)
示例#49
0
 def launch(self):
     Base.launch(self)
     self.wait_for_element_not_displayed(*self._progress_bar_locator)
     self.wait_for_element_displayed(*self._thumbnail_list_view_locator)
示例#50
0
 def launch(self):
     Base.launch(self)
     Wait(self.marionette).until(
         expected.element_displayed(
             Wait(self.marionette).until(
                 expected.element_present(*self._app_ready_locator))))
示例#51
0
 def launch(self):
     Base.launch(self, launch_timeout=120000)
示例#52
0
 def __init__(self, marionette, app_name=False):
     Base.__init__(self, marionette)
     if app_name:
         self.name = app_name
示例#53
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(
         expected.element_displayed(*self._download_text_locator))
示例#54
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     form = self.marionette.find_element(*self._form_locator)
     Wait(self.marionette).until(lambda m: form.location['y'] == 0)
示例#55
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
示例#56
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(
         lambda m: self.apps.displayed_app.name == self.name)
     self.apps.switch_to_displayed_app()
示例#57
0
 def launch(self):
     Base.launch(self)
     self.wait_for_condition(lambda m: m.execute_script(
         "return window.wrappedJSObject.Browser.hasLoaded;"))
示例#58
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.name = UI_TESTS
示例#59
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_contact_details_to_load()
示例#60
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.marionette.switch_to_frame()
     self.wait_for_element_present(*self._persona_frame_locator)