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
2021-03-06 04:44:43 +05:30

34 lines
1.2 KiB
Python

import time
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=====================")
time.sleep(4)
self.cli.execute('app.clickNavDrawer()')
time.sleep(3)
self.cli.drag("//NavigationItem[@text=\"Sent\"]","//NavigationItem[@text=\"Inbox\"]",1)
time.sleep(3)
self.cli.click_on('//NavigationItem[8]')
time.sleep(3)
self.cli.drag('//Payment/BoxLayout[0]/ScrollView[0]/BoxLayout[0]/ProductCategoryLayout[0]/ProductLayout[1]',
'//Payment/BoxLayout[0]/ScrollView[0]/BoxLayout[0]/ProductCategoryLayout[0]/ProductLayout[0]', 1)
time.sleep(2)
self.cli.click_on('//MDRaisedButton[3]')
time.sleep(2)
self.cli.click_on('//ListItemWithLabel[0]')
time.sleep(2)
self.cli.click_on('//MDRaisedButton[3]')
time.sleep(2)
if __name__ == '__main__':
"""Start Application"""
obj = PaymentScreen()
obj.setUpClass()
obj.test_select_subscripton()