Exemple #1
0
    def select(self, match_string):
        # This needs to be duplicated from base.py for a few reasons:
        # 1. When we return from the frame we don't return to the Settings app in its initial state,
        #    so the wait for in its launch method times out
        # 2. We need to use in instead of == on the match text because of the directional strings

        # have to go back to top level to get the B2G select box wrapper
        self.marionette.switch_to_frame()

        options = Wait(self.marionette).until(
            expected.elements_present(By.CSS_SELECTOR,
                                      '.value-selector-container li'))
        close = self.marionette.find_element(By.CSS_SELECTOR,
                                             'button.value-option-confirm')

        # loop options until we find the match
        for li in options:
            if match_string in li.text:
                li.tap()
                break
        else:
            raise Exception(
                "Element '%s' could not be found in select wrapper" %
                match_string)

        close.tap()
        Wait(self.marionette).until(expected.element_not_displayed(close))

        # TODO we should find something suitable to wait for, but this goes too
        # fast against desktop builds causing intermittent failures
        time.sleep(0.2)

        # now back to app
        self.apps.switch_to_displayed_app()
Exemple #2
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()
     Wait(self.marionette).until(
         expected.elements_present(*self._apps_locator))
Exemple #3
0
    def select(self, match_string):
        # This needs to be duplicated from base.py because when we return from the frame
        # we don't return to the Settings app in its initial state,
        # so the wait for in its launch method times out

        # have to go back to top level to get the B2G select box wrapper
        self.marionette.switch_to_frame()

        Wait(self.marionette).until(
            expected.elements_present(
                By.CSS_SELECTOR, '.value-selector-container li'))

        options = self.marionette.find_elements(By.CSS_SELECTOR, '.value-selector-container li')
        close = self.marionette.find_element(By.CSS_SELECTOR, 'button.value-option-confirm')

        # loop options until we find the match
        for li in options:
            if match_string == li.text:
                li.tap()
                break
        else:
            raise Exception("Element '%s' could not be found in select wrapper" % match_string)

        close.tap()
        Wait(self.marionette).until(expected.element_not_displayed(close))

        # TODO we should find something suitable to wait for, but this goes too
        # fast against desktop builds causing intermittent failures
        time.sleep(0.2)

        # now back to app
        self.apps.switch_to_displayed_app()
Exemple #4
0
 def wait_for_languages_to_load(self):
     Wait(self.marionette).until(
         expected.elements_present(*self._language_options_locator))
 def available_products(self):
     products = Wait(self.marionette).until(
         expected.elements_present(*self._available_product_locator))
     return [Product(self.marionette, product) for product in products]
Exemple #6
0
 def media(self):
     elements = Wait(self.marionette).until(
         expected.elements_present(*self._list_item_locator))
     Wait(self.marionette).until(expected.element_displayed(elements[0]))
     return [Media(self.marionette, element) for element in elements]
Exemple #7
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()
     Wait(self.marionette).until(expected.elements_present(*self._apps_locator))
Exemple #8
0
 def wait_for_languages_to_load(self):
     Wait(self.marionette).until(expected.elements_present(*self._language_options_locator))