aboutsummaryrefslogtreecommitdiffstats
path: root/squishtests/suite_neptune3/tst_app_phone/steps/app_phone.py
diff options
context:
space:
mode:
Diffstat (limited to 'squishtests/suite_neptune3/tst_app_phone/steps/app_phone.py')
-rw-r--r--squishtests/suite_neptune3/tst_app_phone/steps/app_phone.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/squishtests/suite_neptune3/tst_app_phone/steps/app_phone.py b/squishtests/suite_neptune3/tst_app_phone/steps/app_phone.py
index 3d7dc918..4e14fb6d 100644
--- a/squishtests/suite_neptune3/tst_app_phone/steps/app_phone.py
+++ b/squishtests/suite_neptune3/tst_app_phone/steps/app_phone.py
@@ -164,31 +164,3 @@ def step(context, view_name, entry_number):
# switch to main before new command
app.switch_to_main_app()
squish.snooze(0.2)
-
-
-@Then("number from entry '|word|' should be called")
-def step(context, views):
- if not context.userData:
- context.userData = {}
- calling_name = context.userData['calling']
-
- # use a natural numbering, so +1 since entry 0 is entry 1
- squish.snooze(0.25)
- # switch and wait a little
- app.switch_to_app('phone')
- squish.snooze(0.25)
-
- caller_name_obj = squish.waitForObject(names.phoneCallerLabel)
-
- caller_name = None
- if caller_name_obj is not None:
- caller_name = str(caller_name_obj.text)
- # end call before comparing
- end_call_button = squish.waitForObject(names.phoneCallerEndButton)
- squish.tapObject(end_call_button)
-
- app.compare(calling_name, caller_name, "calling the right name")
-
- # switch to main before new command
- app.switch_to_main_app()
- squish.snooze(0.2)