Exemplo n.º 1
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.switch_to_keypad_frame()
     keypad_toolbar_button = self.marionette.find_element(
         *self._keypad_toolbar_button_locator)
     self.wait_for_condition(lambda m: 'toolbar-option-selected' in
                             keypad_toolbar_button.get_attribute('class'))
Exemplo n.º 2
0
    def __init__(self, marionette):
        Phone.__init__(self, marionette)

        self.marionette.switch_to_frame()

        self.wait_for_element_present(*self._call_screen_locator, timeout=30)

        call_screen = self.marionette.find_element(*self._call_screen_locator)
        self.marionette.switch_to_frame(call_screen)
Exemplo n.º 3
0
    def __init__(self, marionette):
        Phone.__init__(self, marionette)

        self.marionette.switch_to_frame()

        self.wait_for_element_present(*self._call_screen_locator, timeout=30)

        call_screen = self.marionette.find_element(*self._call_screen_locator)
        self.marionette.switch_to_frame(call_screen)
Exemplo n.º 4
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.wait_to_be_displayed()
     self.apps.switch_to_displayed_app()
     keypad_toolbar_button = self.marionette.find_element(
         *self._keypad_toolbar_button_locator)
     Wait(self.marionette).until(
         lambda m: 'toolbar-option-selected' in keypad_toolbar_button.
         get_attribute('class'))
Exemplo n.º 5
0
    def __init__(self, marionette):
        Phone.__init__(self, marionette)

        self.switch_to_call_screen_frame()
Exemplo n.º 6
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.switch_to_keypad_frame()
     keypad_toolbar_button = self.marionette.find_element(*self._keypad_toolbar_button_locator)
     self.wait_for_condition(lambda m: "toolbar-option-selected" in keypad_toolbar_button.get_attribute("class"))
Exemplo n.º 7
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     Wait(self.marionette).until(
         expected.element_not_displayed(*self._upgrade_progress_locator))
     Wait(self.marionette).until(
         expected.element_displayed(*self._all_calls_tab_link_locator))
Exemplo n.º 8
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     # TODO sometimes we may tap before the click handlers are ready
     time.sleep(0.5)
Exemplo n.º 9
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.wait_for_element_not_displayed(*self._upgrade_progress_locator)
     self.wait_for_element_displayed(*self._all_calls_tab_link_locator)
Exemplo n.º 10
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
Exemplo n.º 11
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.marionette.switch_to_frame()
     self.marionette.switch_to_frame(
         self.marionette.find_element(*self._attention_frame_locator))
Exemplo n.º 12
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.wait_for_condition(lambda m: self.apps.displayed_app.name == self.name)
     self.apps.switch_to_displayed_app()
     keypad_toolbar_button = self.marionette.find_element(*self._keypad_toolbar_button_locator)
     self.wait_for_condition(lambda m: 'toolbar-option-selected' in keypad_toolbar_button.get_attribute('class'))
Exemplo n.º 13
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.wait_for_element_displayed(*self._all_calls_tab_locator)
Exemplo n.º 14
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     # TODO sometimes we may tap before the click handlers are ready
     time.sleep(0.5)
Exemplo n.º 15
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.wait_for_element_displayed(*self._all_calls_tab_locator)
Exemplo n.º 16
0
    def __init__(self, marionette):
        Phone.__init__(self, marionette)

        self.switch_to_call_screen_frame()
Exemplo n.º 17
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.marionette.switch_to_frame()
     self.marionette.switch_to_frame(self.marionette.find_element(*self._attention_frame_locator))
Exemplo n.º 18
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     Wait(self.marionette).until(
         expected.element_not_displayed(*self._upgrade_progress_locator))
     Wait(self.marionette).until(
         expected.element_displayed(*self._all_calls_tab_link_locator))
Exemplo n.º 19
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.wait_for_element_not_displayed(*self._upgrade_progress_locator)
     self.wait_for_element_displayed(*self._all_calls_tab_link_locator)
Exemplo n.º 20
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
Exemplo n.º 21
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.wait_for_element_displayed(*self._keyboard_container_locator)
Exemplo n.º 22
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.wait_for_element_displayed(*self._keyboard_container_locator)
Exemplo n.º 23
0
 def __init__(self, marionette):
     Phone.__init__(self, marionette)
     self.wait_to_be_displayed()
     self.apps.switch_to_displayed_app()
     keypad_toolbar_button = self.marionette.find_element(*self._keypad_toolbar_button_locator)
     Wait(self.marionette).until(lambda m: 'toolbar-option-selected' in keypad_toolbar_button.get_attribute('class'))