removed payment screen

This commit is contained in:
shekhar-cis 2021-08-18 16:07:20 +05:30
parent 97a60e4d5d
commit ccfdfbc41a
Signed by untrusted user: shekhar-cis
GPG Key ID: 8B2A6C8D5F7F1635
3 changed files with 4 additions and 4 deletions

View File

@ -73,14 +73,14 @@ class TeleniumTestProcess(TeleniumTestCase):
try:
if self.cli.getattr(selector, 'current') == value:
self.assertTrue(selector, value)
return True
break
except TeleniumHttpException:
sleep(0.1)
continue
finally:
# Finally Sleep is used to make the menu button funcationlly available for the click process.
# (because Transition is little bit slow)
sleep(0.1)
sleep(0.2)
def drag(self, xpath1, xpath2):
"""this method is for dragging"""

View File

@ -9,7 +9,7 @@ class NetworkStatusScreen(TeleniumTestProcess):
@skip_screen_checks
def test_network_status(self):
"""Show NetwrokStatus"""
"""Show NetworkStatus"""
# This is for checking Current screen
self.assert_wait_no_except('//ScreenManager[@current]', timeout=15, value='inbox')
# This is for checking the Side nav Bar id closed

View File

@ -12,7 +12,7 @@ class SettingScreen(TeleniumTestProcess):
"""Show Setting Screen"""
# This is for checking Current screen
self.assert_wait_no_except('//ScreenManager[@current]', timeout=15, value='inbox')
# This is for checking the Side nav Bar id closed
# This is for checking the Side nav Bar is closed
self.assertExists('//MDNavigationDrawer[@status~=\"closed\"]', timeout=5)
# This is for checking the menu button is appeared
self.assertExists('//MDActionTopAppBarButton[@icon~=\"menu\"]', timeout=5)