From 050b113e0106df8926092c237276d38fd551fc76 Mon Sep 17 00:00:00 2001 From: shekhar-cis Date: Tue, 27 Jul 2021 11:58:50 +0530 Subject: [PATCH] fixed code quality --- Running | 0 src/bitmessagekivy/tests/test_addressbook.py | 5 ++--- src/bitmessagekivy/tests/test_trash_message.py | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) create mode 100644 Running diff --git a/Running b/Running new file mode 100644 index 00000000..e69de29b diff --git a/src/bitmessagekivy/tests/test_addressbook.py b/src/bitmessagekivy/tests/test_addressbook.py index 313205ed..a084c8e6 100644 --- a/src/bitmessagekivy/tests/test_addressbook.py +++ b/src/bitmessagekivy/tests/test_addressbook.py @@ -61,7 +61,7 @@ class AddressBook(TeleniumTestProcess): def test_cancel_addressbook_popup(self): """Cancel Address""" print("=====================Test -Cancel Address Add Popup=====================") - # Click on Account-Plus Icon to opeb popup for add Address + # Click on Account-Plus Icon to open popup for add Address self.cli.execute('app.addingtoaddressbook()') # Add Label to label Field self.cli.setattr('//GrashofPopup/BoxLayout[0]/MDTextField[0]', 'text', 'test2') @@ -97,7 +97,7 @@ class AddressBook(TeleniumTestProcess): self.assertExists('//DropDownWidget/ScrollView[0]/BoxLayout[0]/MyMDTextField[@text=\"Demo Subject\"]', timeout=2) # ADD MESSAGE BODY self.cli.setattr('//DropDownWidget/ScrollView[0]/BoxLayout[0]/ScrollView[0]/MDTextField[0]', - 'text', 'Hey,This is draft Message Body from Address Book') + 'text', 'Hey,This is draft Message Body from Address Book') # Checking Message body is Entered self.assertNotEqual('//DropDownWidget/ScrollView[0]/BoxLayout[0]/ScrollView[0]/MDTextField[@text]', '') # Click on Send Icon @@ -121,7 +121,6 @@ class AddressBook(TeleniumTestProcess): self.assertExists("//AddressBook[@name~=\"addressbook\"]", timeout=2) # Swipe to delete self.assertTrue('//MDList[0]/CutsomSwipeToDeleteItem[0]//MDIconButton[@disabled]', 'True') - self.cli.sleep(1) self.drag( '//MDList[0]//TwoLineAvatarIconListItem[0]/BoxLayout[1]', '//MDList[0]//TwoLineAvatarIconListItem[0]/BoxLayout[2]') diff --git a/src/bitmessagekivy/tests/test_trash_message.py b/src/bitmessagekivy/tests/test_trash_message.py index de21944d..b18c08a1 100644 --- a/src/bitmessagekivy/tests/test_trash_message.py +++ b/src/bitmessagekivy/tests/test_trash_message.py @@ -6,7 +6,7 @@ class TrashMessage(TeleniumTestProcess): def test_delete_trash_message(self): """Delete Trash message permanently from trash message listing""" print("=====================Test -Delete Message From Trash Message Listing=====================") - self.cli.sleep() + self.cli.sleep(8) # this is for opening Nav drawer self.cli.wait_click('//MDActionTopAppBarButton[@icon=\"menu\"]', timeout=5) # checking state of Nav drawer @@ -43,4 +43,4 @@ class TrashMessage(TeleniumTestProcess): self.assertExists("//Trash[@name~=\"trash\"]", timeout=2) total_trash_msgs = len(self.cli.select("//CutsomSwipeToDeleteItem")) # Checking the number of messages after delete. - self.assertEqual(total_trash_msgs, 1) \ No newline at end of file + self.assertEqual(total_trash_msgs, 1)