コード例 #1
0
ファイル: list_view.py プロジェクト: alison-shiue/MTBF-Driver
 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')
コード例 #2
0
 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)
コード例 #3
0
ファイル: tile_view.py プロジェクト: Archaeopteryx/gaia
    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()
コード例 #4
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))
         )
     )
コード例 #5
0
ファイル: activities.py プロジェクト: DouglasSherk/gaia
 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)
コード例 #6
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') != '')
コード例 #7
0
ファイル: time_picker.py プロジェクト: guhelski/gaia
    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)
コード例 #8
0
ファイル: crop_view.py プロジェクト: AutomatedTester/gaia
 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))
コード例 #9
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']))
コード例 #10
0
ファイル: new_message.py プロジェクト: DouglasSherk/gaia
 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())
コード例 #11
0
ファイル: time_picker.py プロジェクト: jeremiahlee/gaia
    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)
コード例 #12
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))
コード例 #13
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)
コード例 #14
0
ファイル: fxaccounts.py プロジェクト: Archaeopteryx/gaia
    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)
コード例 #15
0
ファイル: browsing_privacy.py プロジェクト: stasm/gaia
    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))
            )
        )
コード例 #16
0
ファイル: view_image.py プロジェクト: AutomatedTester/gaia
    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))))
コード例 #17
0
ファイル: view_image.py プロジェクト: Archaeopteryx/gaia
 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))))
コード例 #18
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')
コード例 #19
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)
コード例 #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._current_image_locator))
         )
     )
     Wait(self.marionette).until(
         lambda m: self.marionette.find_element(*self._current_image_locator).get_attribute("src") != ""
     )
コード例 #21
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)
コード例 #22
0
ファイル: google.py プロジェクト: 4gh/gaia
    def __init__(self, marionette):
        Base.__init__(self, marionette)

        # wait for the pop up screen to open
        view = self.wait_for_element_present(*self._iframe_locator)
        self.marionette.switch_to_frame(view)

        # wait for the page to load
        email = self.wait_for_element_present(*self._email_locator)
        self.wait_for_condition(lambda m: email.get_attribute('value') != '')
コード例 #23
0
ファイル: crop_view.py プロジェクト: AaskaShah/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(expected.element_displayed(
         Wait(self.marionette).until(expected.element_present(
             *self._edit_preview_canvas_locator))))
     # I have tried waiting for all the elements in the UI, but the crash
     # still occurs so the only solution I found was the hardcoded sleep - Bug 1111981
     time.sleep(3)
     done = self.marionette.find_element(*self._crop_done_button_locator)
     Wait(self.marionette).until(expected.element_enabled(done))
コード例 #24
0
ファイル: google.py プロジェクト: hharchani/gaia
    def __init__(self, marionette):
        Base.__init__(self, marionette)

        # wait for the pop up screen to open
        view = Wait(self.marionette).until(expected.element_present(*self._iframe_locator))
        self.marionette.switch_to_frame(view)

        # 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") != "")
コード例 #25
0
ファイル: settings.py プロジェクト: Anirudh0/gaia
    def __init__(self, marionette):
        Base.__init__(self, marionette)
        # go into iframe of usage app settings
        frame = Wait(self.marionette).until(expected.element_present(
            *self._settings_iframe_locator))
        Wait(self.marionette).until(expected.element_displayed(frame))
        self.marionette.switch_to_frame(frame)

        Wait(self.marionette).until(expected.element_displayed(
            Wait(self.marionette).until(expected.element_present(
                *self._settings_title_locator))))
コード例 #26
0
ファイル: facebook.py プロジェクト: bebef1987/gaia
    def __init__(self, marionette):
        Base.__init__(self, marionette)
        self.marionette.switch_to_frame()

        # wait for the pop up screen to open
        view = Wait(self.marionette, timeout=60).until(
            expected.element_present(*self._iframe_locator))
        Wait(self.marionette).until(expected.element_displayed(view))

        # Change the app to make use of the Facebook developer appId
        Wait(self.marionette, timeout=60).until(lambda m: view.get_attribute('data-url') != 'about:blank')

        # Desktop b2g uses this
        str = view.get_attribute('data-url').replace('123456', '323630664378726')
        # Device uses this
        str = str.replace('395559767228801', '323630664378726')

        self.marionette.switch_to_frame(view)
        # Wait until the original page has loaded a bit, because sometimes,
        # trying to load the 2nd page directly after the first, causes a blank page
        Wait(self.marionette, timeout=60).until(expected.element_present(*self._div_locator))
        self.marionette.navigate(str)
        Wait(self.marionette, timeout=60).until(expected.element_present(*self._email_locator))
コード例 #27
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.marionette.switch_to_frame()
     view = self.marionette.find_element(*self._actions_menu_locator)
     Wait(self.marionette).until(lambda m: view.location['y'] == 0)
コード例 #28
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_displayed(*self._apply_locator)
コード例 #29
0
ファイル: internet_sharing.py プロジェクト: zhannett/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(
         expected.element_displayed(*self._security_selector_locator))
コード例 #30
0
ファイル: app.py プロジェクト: jonallengriffin/gaia-ui-tests
 def __init__(self, marionette, app_name=False):
     Base.__init__(self, marionette)
     if app_name:
         self.name = app_name
コード例 #31
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_not_present(
         *self._search_results_loading_locator)
コード例 #32
0
ファイル: fullscreen_image.py プロジェクト: nikhilm/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_displayed(*self._current_image_locator)
コード例 #33
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_displayed(*self._actions_menu_locator)
     # TODO Difficult intermittent bug 977052
     time.sleep(1)
コード例 #34
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)
コード例 #35
0
ファイル: app.py プロジェクト: kuoe0/gaia-dev
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.name = UI_TESTS
コード例 #36
0
ファイル: do_not_track.py プロジェクト: wsdigital/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.data_layer = GaiaData(self.marionette)
コード例 #37
0
ファイル: settings_form.py プロジェクト: chenghuk/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_settings_close_button_to_load()
コード例 #38
0
ファイル: settings_form.py プロジェクト: zhannett/gaia
 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)
コード例 #39
0
ファイル: settings.py プロジェクト: pcheng13/gaia-ui-tests
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     # go into iframe of usage app settings
     self.wait_for_element_displayed(*self._settings_iframe_locator)
     self.marionette.switch_to_frame(self.marionette.find_element(*self._settings_iframe_locator))
     self.wait_for_element_displayed(*self._settings_title_locator)
コード例 #40
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_displayed(*self._fullscreen_view_locator)
コード例 #41
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     element = self.marionette.find_element(
         *self._carrier_container_locator)
     Wait(self.marionette).until(
         lambda m: 'current' in element.get_attribute('class'))
コード例 #42
0
ファイル: keypad.py プロジェクト: kuoe0/gaia-dev
 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)
コード例 #43
0
ファイル: keyboard.py プロジェクト: philsmd/gaia
 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 __init__(self, marionette, element, index):
     self.root_element = element
     # Save the index of the element so we can match it to the js files object
     self.index = index
     Base.__init__(self, marionette)
コード例 #45
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(
         expected.element_displayed(*self._crash_report_info_locator))
コード例 #46
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     el = self.marionette.find_element(*self._details_header_locator)
     Wait(self.marionette).until(
         lambda m: el.location['x'] == 0 and el.is_displayed())
コード例 #47
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(
         expected.element_displayed(*self._os_version_locator))
コード例 #48
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_displayed(*self._music_size_locator)
     self.wait_for_element_displayed(*self._pictures_size_locator)
     self.wait_for_element_displayed(*self._movies_size_locator)
コード例 #49
0
    def __init__(self, marionette):
        Base.__init__(self, marionette)

        Wait(self.marionette).until(
            expected.element_displayed(*self._clear_browsing_history_locator))
コード例 #50
0
ファイル: media_storage.py プロジェクト: gaby2300/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     Wait(self.marionette).until(expected.element_displayed(*self._internal_storage_header_locator))
     Wait(self.marionette).until(expected.element_displayed(*self._external_storage_header_locator))
コード例 #51
0
ファイル: sublist_view.py プロジェクト: inni1115/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self._set_active_view('artist')
     self.wait_sublist_view_draw()
コード例 #52
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_add_edit_contact_to_load()
コード例 #53
0
ファイル: new_message.py プロジェクト: enwin/gaia
 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()
     section = self.marionette.find_element(*self._thread_messages_locator)
     Wait(self.marionette).until(lambda m: section.location['x'] == 0)
コード例 #54
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()
コード例 #55
0
ファイル: device_info.py プロジェクト: 6a68/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_displayed(*self._phone_number_locator)
コード例 #56
0
ファイル: event_details.py プロジェクト: zhixin4567/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
コード例 #57
0
ファイル: app.py プロジェクト: mmalecki/gaia
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.marionette.switch_to_frame()
     self.wait_for_element_present(*self._persona_frame_locator)
コード例 #58
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_condition(lambda m: m.find_element(*self._welcome_title_locator).location['x'] == 0)
コード例 #59
0
ファイル: settings.py プロジェクト: eeejay/gaia-ui-tests
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.wait_for_element_displayed(*self._save_locator)
コード例 #60
0
 def __init__(self, marionette):
     Base.__init__(self, marionette)
     self.marionette.switch_to_frame()
     self.wait_for_element_displayed(*self._actions_menu_locator)