Best Python code snippet using uiautomator
nestedset.py
Source:nestedset.py
...49 self.assertTrue(self.first_child.lft==2)50 self.assertTrue(self.first_child.rgt==3)51 self.assertTrue(self.root.rgt==4)52 53 def test_sibling(self):54 self.test_first_child()55 56 self.first_sibling.save(1)57 update_nsm(self.first_sibling)58 59 self.root._loadfromdb()60 self.first_child._loadfromdb()61 62 self.assertTrue(self.root.lft==1)63 self.assertTrue(self.first_child.lft==2)64 self.assertTrue(self.first_child.rgt==3)65 self.assertTrue(self.first_sibling.lft==4)66 self.assertTrue(self.first_sibling.rgt==5)67 self.assertTrue(self.root.rgt==6)68 69 def test_remove_sibling(self):70 self.test_sibling()71 self.first_sibling.parent_node = ''72 update_nsm(self.first_sibling)73 self.root._loadfromdb()74 self.first_child._loadfromdb()75 self.assertTrue(self.root.lft==1)76 self.assertTrue(self.first_child.lft==2)77 self.assertTrue(self.first_child.rgt==3)78 self.assertTrue(self.root.rgt==4)79 self.assertTrue(self.first_sibling.lft==5)80 self.assertTrue(self.first_sibling.rgt==6)81 82 def test_change_parent(self):83 self.test_sibling()84 85 # add grand child86 self.grand_child.save(1)87 update_nsm(self.grand_child)88 89 # check lft rgt90 self.assertTrue(self.grand_child.lft==3)91 self.assertTrue(self.grand_child.rgt==4)92 # change parent93 self.grand_child.parent_node = 'C002'94 self.grand_child.save()95 96 # update97 update_nsm(self.grand_child)...
_payment_chk_batch.py
Source:_payment_chk_batch.py
...74 continue75 76 child = get_child(row[i])77 # print (f'parent: {parent}, child: {child}')78 test_sibling(parent, child)79 children.append(child)80 # Test products81 products = get_products(row[5])82 # Test Methods83 if not row[7] and not row[8]:84 raise Exception('Aucune méthode de paiement trouvée.')85 # Create method86 mid = OrderMethod.objects.latest('id').id + 187 amount = 088 method = OrderMethod(id=mid)89 if row[7]:90 amount += int(row[7])91 method.amount = int(row[7])92 method.method = MethodEnum.CASH...
sibling_tests.py
Source:sibling_tests.py
...5 Sibling.init_from_args("A")6def test_bad_init_no_args():7 with pytest.raises(SystemExit):8 Sibling.init_from_args('')9def test_sibling(basictrees):10 siblings = list(Sibling(taxon="A").consume(basictrees))11 assert siblings == ["B","C","B","B","C","B"]12def test_non_leaf_sibling(basictrees):13 siblings = list(build_pipeline("sibling C", source=basictrees))14 assert siblings == ["(A,B)","A","(A,B)","(A,B)","A","E"]15def test_bad_params_missing_taxa(basictrees):16 with pytest.raises(ValueError):...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!