本文整理汇总了Python中gaiatest.apps.phone.regions.call_screen.CallScreen.wait_for_condition方法的典型用法代码示例。如果您正苦于以下问题:Python CallScreen.wait_for_condition方法的具体用法?Python CallScreen.wait_for_condition怎么用?Python CallScreen.wait_for_condition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gaiatest.apps.phone.regions.call_screen.CallScreen
的用法示例。
在下文中一共展示了CallScreen.wait_for_condition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_receive_call
# 需要导入模块: from gaiatest.apps.phone.regions.call_screen import CallScreen [as 别名]
# 或者: from gaiatest.apps.phone.regions.call_screen.CallScreen import wait_for_condition [as 别名]
def test_receive_call(self):
"""Make a phone call from Plivo to the phone."""
PLIVO_TIMEOUT = 30
self.plivo = PlivoUtil(
self.testvars['plivo']['auth_id'],
self.testvars['plivo']['auth_token'],
self.testvars['plivo']['phone_number']
)
self.call_uuid = self.plivo.make_call(
to_number=self.testvars['carrier']['phone_number'].replace('+', ''),
timeout=PLIVO_TIMEOUT)
call_screen = CallScreen(self.marionette)
call_screen.wait_for_incoming_call()
call_screen.answer_call()
# Wait for Plivo to report the call as connected
Wait(self.plivo, timeout=PLIVO_TIMEOUT).until(
lambda p: p.is_call_connected(self.call_uuid),
message='The call was not connected.')
# Wait for the state to be connected
call_screen.wait_for_condition(
lambda m: self.data_layer.active_telephony_state == 'connected',
timeout=30)
call_screen.hang_up()
# Wait for Plivo to report the call as completed
Wait(self.plivo, timeout=PLIVO_TIMEOUT).until(
lambda p: p.is_call_completed(self.call_uuid),
message='The call was not completed.')
self.call_uuid = None
示例2: test_dsds_receive_call_on_both_sims
# 需要导入模块: from gaiatest.apps.phone.regions.call_screen import CallScreen [as 别名]
# 或者: from gaiatest.apps.phone.regions.call_screen.CallScreen import wait_for_condition [as 别名]
def test_dsds_receive_call_on_both_sims(self, sim_value, sim_name):
"""Make a phone call from Plivo to each SIM."""
PLIVO_TIMEOUT = 30
from gaiatest.utils.plivo.plivo_util import PlivoUtil
self.plivo = PlivoUtil(
self.testvars['plivo']['auth_id'],
self.testvars['plivo']['auth_token'],
self.testvars['plivo']['phone_number']
)
self.call_uuid = self.plivo.make_call(
to_number=self.testvars['local_phone_numbers'][sim_value].replace('+', ''),
timeout=PLIVO_TIMEOUT)
call_screen = CallScreen(self.marionette)
call_screen.wait_for_incoming_call()
# TODO Replace the following line by a check on the l10n ID
# once bug 1104667 lands
self.assertTrue(sim_name in call_screen.incoming_via_sim)
call_screen.answer_call()
# Wait for Plivo to report the call as connected
Wait(self.plivo, timeout=PLIVO_TIMEOUT).until(
lambda p: p.is_call_connected(self.call_uuid),
message='The call was not connected.')
# Wait for the state to be connected
call_screen.wait_for_condition(
lambda m: self.data_layer.active_telephony_state == 'connected',
timeout=30)
# TODO Replace the following line by a check on the l10n ID
# once bug 1104667 lands
self.assertTrue(sim_name in call_screen.incoming_via_sim)
call_screen.hang_up()
Wait(self.plivo, timeout=PLIVO_TIMEOUT).until(
lambda p: p.is_call_completed(self.call_uuid),
message="Plivo didn't report the call as completed")
self.call_uuid = None