Source code for gaiatest.apps.homescreen.regions.confirm_dialog

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import time

from marionette_driver import expected, By, Wait

from gaiatest.apps.base import Base
from gaiatest.apps.homescreen.regions.bottom_bar import BottomBar


[docs]class ConfirmDialog(Base): _confirm_button_locator = (By.CSS_SELECTOR, 'gaia-confirm .confirm')
[docs] def tap_confirm(self, bookmark=False): # TODO add a good wait here when Bug 1008961 is resolved time.sleep(1) if not bookmark: self.marionette.switch_to_frame() confirm = Wait(self.marionette).until(expected.element_present( *self._confirm_button_locator)) Wait(self.marionette).until(expected.element_displayed(confirm)) confirm.tap() return BottomBar(self.marionette)