This repository has been archived on 2025-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-02-03/src/bitmessagekivy/tests/test_payment_subscription.py

27 lines
1.1 KiB
Python
Raw Normal View History

2021-03-06 00:14:43 +01:00
from bitmessagekivy.tests.telenium_process import TeleniumTestProcess
class PaymentScreen(TeleniumTestProcess):
"""SubscriptionPayment Screen Functionality Testing"""
def test_select_subscripton(self):
"""Select Subscripton From List of Subscriptons"""
print("=====================Test -Select Subscripton From List of Subscriptons=====================")
self.cli.sleep(4)
2021-03-06 00:14:43 +01:00
self.cli.execute('app.clickNavDrawer()')
self.cli.sleep(3)
2021-05-19 10:27:10 +02:00
self.cli.drag("//NavigationItem[@text=\"Sent\"]", "//NavigationItem[@text=\"Inbox\"]", 1)
self.cli.sleep(3)
2021-03-06 00:14:43 +01:00
self.cli.click_on('//NavigationItem[8]')
self.cli.sleep(3)
2021-05-19 10:27:10 +02:00
self.cli.drag(
'//Payment/BoxLayout[0]/ScrollView[0]/BoxLayout[0]/ProductCategoryLayout[0]/ProductLayout[1]',
2021-03-06 00:14:43 +01:00
'//Payment/BoxLayout[0]/ScrollView[0]/BoxLayout[0]/ProductCategoryLayout[0]/ProductLayout[0]', 1)
self.cli.sleep(2)
2021-03-06 00:14:43 +01:00
self.cli.click_on('//MDRaisedButton[3]')
self.cli.sleep(2)
2021-03-06 00:14:43 +01:00
self.cli.click_on('//ListItemWithLabel[0]')
self.cli.sleep(2)
2021-03-06 00:14:43 +01:00
self.cli.click_on('//MDRaisedButton[3]')
self.cli.sleep(2)