本文整理汇总了Python中OWDTestToolkit.apps.dialer.Dialer.call_this_number方法的典型用法代码示例。如果您正苦于以下问题:Python Dialer.call_this_number方法的具体用法?Python Dialer.call_this_number怎么用?Python Dialer.call_this_number使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OWDTestToolkit.apps.dialer.Dialer
的用法示例。
在下文中一共展示了Dialer.call_this_number方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_main
# 需要导入模块: from OWDTestToolkit.apps.dialer import Dialer [as 别名]
# 或者: from OWDTestToolkit.apps.dialer.Dialer import call_this_number [as 别名]
class test_main(GaiaTestCase):
def setUp(self):
# Set up child objects...
GaiaTestCase.setUp(self)
self.UTILS = UTILS(self)
self.dialer = Dialer(self)
self.contacts = Contacts(self)
self.Contact_1 = MockContact(tel={'type': 'Mobile', 'value': '665666666'})
self.num = self.Contact_1["tel"]["value"]
def tearDown(self):
self.UTILS.reporting.reportResults()
GaiaTestCase.tearDown(self)
def test_run(self):
# Enter a number in the dialer.
self.dialer.launch()
self.dialer.enterNumber(self.num)
self.dialer.call_this_number()
self.UTILS.iframe.switchToFrame(*DOM.Dialer.frame_locator_calling)
x = self.UTILS.element.getElement(DOM.Dialer.hangup_bar_locator, "Hangup button")
x.tap()
self.marionette.switch_to_frame()
x = DOM.Dialer.frame_locator_calling
self.UTILS.element.waitForNotElements(("xpath", "//iframe[contains(@%s,'%s')]" % (x[0],x[1])), "Calling iframe", True, 5)
示例2: test_main
# 需要导入模块: from OWDTestToolkit.apps.dialer import Dialer [as 别名]
# 或者: from OWDTestToolkit.apps.dialer.Dialer import call_this_number [as 别名]
class test_main(GaiaTestCase):
def setUp(self):
# Set up child objects...
GaiaTestCase.setUp(self)
self.UTILS = UTILS(self)
self.dialer = Dialer(self)
self.contacts = Contacts(self)
self.Contact_1 = MockContact(tel={'type': 'Mobile', 'value': '665666666'})
self.num = self.Contact_1["tel"]["value"]
def tearDown(self):
self.UTILS.reporting.reportResults()
GaiaTestCase.tearDown(self)
def test_run(self):
# Enter a number in the dialer.
self.dialer.launch()
self.dialer.enterNumber(self.num)
self.dialer.call_this_number()
self.UTILS.iframe.switchToFrame(*DOM.Dialer.frame_locator_calling)
x = self.UTILS.debug.screenShotOnErr()
self.UTILS.reporting.logResult("info", "Screenshot of call being made:", x)
self.dialer.hangUp()
示例3: test_main
# 需要导入模块: from OWDTestToolkit.apps.dialer import Dialer [as 别名]
# 或者: from OWDTestToolkit.apps.dialer.Dialer import call_this_number [as 别名]
class test_main(GaiaTestCase):
def setUp(self):
GaiaTestCase.setUp(self)
self.UTILS = UTILS(self)
self.contacts = Contacts(self)
self.dialer = Dialer(self)
# Get details of our test contacts.
self.test_contact = MockContact(tel={'type': 'Mobile', 'value': '665666666'})
self.UTILS.general.insertContact(self.test_contact)
self._name = self.test_contact["name"]
self.phone_number = self.test_contact["tel"]["value"]
def tearDown(self):
self.UTILS.reporting.reportResults()
GaiaTestCase.tearDown(self)
def test_run(self):
self.dialer.launch()
self.dialer.enterNumber(self.phone_number)
self.dialer.call_this_number()
self.UTILS.iframe.switchToFrame(*DOM.Dialer.frame_locator_calling)
outgoing_number = self.UTILS.element.getElement(DOM.Dialer.outgoing_call_number, "Outgoing number").text.encode("utf-8")
self.UTILS.reporting.logResult('info', 'Outgoing number: {}'.format(outgoing_number))
# We use 'in' since it's possible that the displayed outgoing contact name is ellipsed
self.UTILS.test.test(outgoing_number in self._name, "Outgoing call found with name matches '{}'".format(self._name))
time.sleep(2)
self.dialer.hangUp()
示例4: test_main
# 需要导入模块: from OWDTestToolkit.apps.dialer import Dialer [as 别名]
# 或者: from OWDTestToolkit.apps.dialer.Dialer import call_this_number [as 别名]
class test_main(GaiaTestCase):
test_num = "123456789"
test_msg = "Test number " + test_num + " for dialing."
def setUp(self):
# Set up child objects...
GaiaTestCase.setUp(self)
self.UTILS = UTILS(self)
self.messages = Messages(self)
self.Dialer = Dialer(self)
# Establish which phone number to use.
self.phone_number = self.UTILS.general.get_config_variable("phone_number", "custom")
def tearDown(self):
self.UTILS.reporting.reportResults()
GaiaTestCase.tearDown(self)
def test_run(self):
# Launch messages app.
self.messages.launch()
# Create and send a new test message.
self.messages.create_and_send_sms([self.phone_number], self.test_msg)
"""
Wait for the last message in this thread to be a 'received' one
and click the link.
"""
x = self.messages.wait_for_message()
self.UTILS.test.test(x, "Received a message.", True)
a = x.find_element("tag name", "a")
a.tap()
x = self.UTILS.element.getElement(DOM.Messages.header_call_btn, "Call button")
x.tap()
self.UTILS.iframe.switchToFrame(*DOM.Dialer.frame_locator)
# Dial the number.
self.Dialer.call_this_number()
# Wait 2 seconds, then hangup.
time.sleep(2)
self.Dialer.hangUp()
self.data_layer.kill_active_call()
示例5: test_main
# 需要导入模块: from OWDTestToolkit.apps.dialer import Dialer [as 别名]
# 或者: from OWDTestToolkit.apps.dialer.Dialer import call_this_number [as 别名]
class test_main(GaiaTestCase):
def setUp(self):
GaiaTestCase.setUp(self)
self.UTILS = UTILS(self)
self.dialer = Dialer(self)
#
# Get own number and incoming
#
self.phone_number = self.UTILS.general.get_config_variable("phone_number", "custom")
self.call_number = self.UTILS.general.get_config_variable("target_call_number", "common")
self.incoming_number = self.UTILS.general.get_config_variable("incoming_call_number", "common")
self.UTILS.statusbar.clearAllStatusBarNotifs()
def tearDown(self):
self.UTILS.reporting.reportResults()
GaiaTestCase.tearDown(self)
def test_run(self):
# Launch dialer app.
self.dialer.launch()
self.dialer.enterNumber(self.call_number)
self.dialer.call_this_number_and_hangup(2)
time.sleep(2)
self.UTILS.messages.create_incoming_sms(self.incoming_number, "Call:" + self.phone_number)
self.UTILS.iframe.switch_to_frame(*DOM.Dialer.frame_locator)
self.dialer.answer_and_hangup(3)
time.sleep(2)
self.UTILS.iframe.switchToFrame(*DOM.Dialer.frame_locator)
time.sleep(2)
self.dialer.enterNumber(self.call_number)
self.dialer.call_this_number()
self.UTILS.messages.create_incoming_sms(self.incoming_number, "Call:" + self.phone_number)
self.UTILS.iframe.switchToFrame(*DOM.Dialer.frame_locator_calling)
self.wait_for_element_displayed('id', 'incoming-answer', timeout=50)
answer = self.marionette.find_element('id', 'incoming-answer')
if answer:
answer.tap()
time.sleep(2)
self.dialer.hangUp()
time.sleep(5)
self.UTILS.iframe.switchToFrame(*DOM.Dialer.frame_locator_calling)
self.dialer.hangUp()
示例6: test_main
# 需要导入模块: from OWDTestToolkit.apps.dialer import Dialer [as 别名]
# 或者: from OWDTestToolkit.apps.dialer.Dialer import call_this_number [as 别名]
class test_main(GaiaTestCase):
test_num = "0781234567890"
test_msg = "Test number " + test_num + " for dialing."
def setUp(self):
# Set up child objects...
GaiaTestCase.setUp(self)
self.UTILS = UTILS(self)
self.messages = Messages(self)
self.Dialer = Dialer(self)
# Establish which phone number to use.
self.phone_number = self.UTILS.general.get_config_variable("phone_number", "custom")
self.cp_incoming_number = self.UTILS.general.get_config_variable("sms_platform_numbers", "common").split(',')
self.UTILS.reporting.logComment("Sending sms to telephone number " + self.phone_number)
def tearDown(self):
self.UTILS.reporting.reportResults()
GaiaTestCase.tearDown(self)
def test_run(self):
self.UTILS.statusbar.clearAllStatusBarNotifs()
self.UTILS.messages.create_incoming_sms(self.phone_number, self.test_msg)
self.UTILS.statusbar.wait_for_notification_toaster_detail(self.test_msg, timeout=120)
title = self.UTILS.statusbar.wait_for_notification_toaster_with_titles(self.cp_incoming_number, timeout=5)
self.UTILS.statusbar.click_on_notification_title(title, DOM.Messages.frame_locator)
last_msg = self.messages.last_message_in_this_thread()
last_msg.find_element("tag name", "a").tap()
x = self.UTILS.element.getElement(DOM.Messages.header_call_btn, "Call button")
x.tap()
time.sleep(5)
self.UTILS.iframe.switchToFrame(*DOM.Dialer.frame_locator)
# Dial the number.
self.Dialer.call_this_number()
# Wait 2 seconds, then hangup.
time.sleep(2)
self.Dialer.hangUp()
self.data_layer.kill_active_call()
示例7: test_main
# 需要导入模块: from OWDTestToolkit.apps.dialer import Dialer [as 别名]
# 或者: from OWDTestToolkit.apps.dialer.Dialer import call_this_number [as 别名]
class test_main(GaiaTestCase):
def setUp(self):
GaiaTestCase.setUp(self)
self.UTILS = UTILS(self)
self.contacts = Contacts(self)
self.dialer = Dialer(self)
# Get details of our test contacts.
self.num = self.UTILS.general.get_config_variable("phone_number", "custom")
self.Contact_1 = MockContact(tel={'type': 'Mobile', 'value': self.num})
self.UTILS.general.insertContact(self.Contact_1)
self.contact_name = self.Contact_1["name"]
self.contact_given_name = self.Contact_1["givenName"]
self.contact_number = self.Contact_1["tel"]["value"]
def tearDown(self):
# Delete the contact. (REVISAR)
self.UTILS.reporting.reportResults()
GaiaTestCase.tearDown(self)
def test_run(self):
# Launch dialer app.
self.dialer.launch()
# Call
self.dialer.enterNumber(self.contact_number)
self.dialer.call_this_number()
time.sleep(2)
# Hang Up
self.dialer.hangUp()
x = self.UTILS.element.getElement(DOM.Dialer.option_bar_keypad, "Keypad Option")
x.tap()
x = self.UTILS.element.getElement(DOM.Dialer.call_number_button, "Call button")
x.tap()
# Make sure that after tapping, we get the last outgoing call in the call log
x = self.UTILS.element.getElement(DOM.Dialer.phone_number, "Phone number field", False)
dialer_num = x.get_attribute("value")
self.UTILS.test.test(True, "Dialer_num: {}".format(dialer_num))