-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript_Automacao_Teste Cliente Appium + Python.py
943 lines (805 loc) · 23.7 KB
/
Script_Automacao_Teste Cliente Appium + Python.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
# Trata-se de um script exemplo de portfólio, sem intenções de execução real
# Importação de bibliotecas padrão do Python e de terceiros
# Bibliotecas padrão do Python
from time import sleep
# Bibliotecas de terceiros
from appium import webdriver
from appium.webdriver.common.appiumby import AppiumBy
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import (
ElementNotVisibleException,
ElementNotSelectableException,
NoSuchElementException
)
# Definição da função para criar WebDriverWait
def create_wait(driver, timeout=25):
return WebDriverWait(driver, timeout, poll_frequency=1, ignored_exceptions=[
ElementNotVisibleException,
ElementNotSelectableException,
NoSuchElementException
])
# Desired_caps semelhante às informações presentes no JSON do Appium
desired_caps = {}
desired_caps['platformName'] = 'Android'
desired_caps['automationName'] = 'UiAutomator2'
desired_caps['platformVersion'] = '11'
desired_caps['deviceName'] = 'Pixel 6 API 30'
desired_caps['app'] = 'caminho/do/app.apk'
desired_caps['appPackage'] = 'appPackage.testeanonimizado'
desired_caps['appActivity'] = 'appActivity.testeanonimizado'
desired_caps['autoGrantPermissions'] = True
# Caminho ao Appium server conforme Appium
driver = webdriver.Remote('http://caminho/servidor/teste/anonimizado', desired_caps)
###############
# Início dos passos realizados no emulador Android
###############
# Espera
wait = create_wait(driver)
print("App aberto")
# Inclusão de CPF de um usuário para login
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("111.111.111-11") # CPF fictício/anonimizado
# Realização do login no aplicativo
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
print("Login OK")
# Selecionando no Menu Principal a opção de Sincronia
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Desmarcando sincronia de envio de dados
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Botão Conectar para iniciar a sincronia
print("Iniciando Sincronia completa")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
sleep(30)
# Espera
wait = create_wait(driver)
ele = wait.until(
lambda x: x.find_element(AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'")
)
ele.click()
print("Clicando para não dar timeout na sincronia")
sleep(30)
# Espera
wait = create_wait(driver)
print("Sincronia OK")
# Volta para a tela anterior de Menu
ele = wait.until(lambda x: x.find_element(AppiumBy.ACCESSIBILITY_ID, "Navigate up"))
ele.click()
# Espera
wait = create_wait(driver)
# Clicando no botão que abre o Menu Lateral
ele = wait.until(
lambda x: x.find_element(AppiumBy.XPATH, "//android.widget.ImageButton['ElementoGenerico']")
)
ele.click()
# Clicando no botão de Preferências no Menu Lateral
print("Acessando Preferências para criação das Faixas")
ele = wait.until(
lambda x: x.find_element(AppiumBy.XPATH, "//android.widget.*['ElementoGenerico']")
)
ele.click()
sleep(3)
# Clicando no OK da mensagem se aparecer no emulador
try:
ele = driver.find_element(AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:id/button_ok")
sleep(1)
ele.click()
print("Mensagem apresentada na tela OK")
wait = create_wait(driver)
except NoSuchElementException:
print("Botão de OK não está presente na tela")
wait = create_wait(driver)
# Voltando para o Menu Principal
ele = wait.until(lambda x: x.find_element(AppiumBy.ACCESSIBILITY_ID, "Navigate up"))
ele.click()
# Espera
wait = create_wait(driver)
# Selecionando no Menu Principal a opção de ação
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
sleep(1)
# Espera
wait = create_wait(driver)
# Incluindo valor aleatório para pesquisa no campo de CPF/CNPJ
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("11111111111")
# Espera
wait = create_wait(driver)
print("Pesquisa Proprietário OK")
# Realizando pesquisa utilizando o valor incluído nos filtros
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Clicando em Cadastrar para cadastro de um novo proprietário
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Preenchimento dos dados do cadastro de proprietário pessoa física
# Seleção de tipo de Pessoa Física
print("Iniciando cadastro de proprietário")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Valor de CPF aleatório no campo de CPF
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("111.111.111-11") # CPF fictício/anonimizado
# Valor de código de área para telefone
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("99")
# Inclusão de valor de telefone celular
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("99999-9999")
# Inclusão de valor no campo de nome do proprietário
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("Nome Proprietário Teste")
# Inclusão de valor no campo de data de nascimento
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("11/11/2011")
# Inclusão de valor no campo de tipo de estabelecimento
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:id/'ElementoGenerico'"
)
)
ele.send_keys("DISTRIBUIDOR")
# Inclusão de valor no campo de email do proprietário
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("teste@mail.com.br")
# Inclusão de seleção na check de envio de informações por email
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Inclusão de informações de Endereço Principal
# Clicando no botão de CADASTRO
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
print("Iniciando cadastro de endereço Principal")
# Espera
wait = create_wait(driver)
# Incluindo valor aleatório para pesquisa de CEP
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("{{cep}}")
# Clicando no botão PESQUISAR
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Clicando na opção de CEP Geral
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Clicando na lista de Municípios
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Clicando em município da lista
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.*[@content-desc='ElementoGenerico']"
)
)
ele.click()
# Clicando no CONFIRMAR do CEP Geral
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Clicando no campo de Divisão para informar valor
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
ele.send_keys("1 DISTRITO")
# Incluindo valor de Bairro
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("Bairro TESTE")
# Incluindo valor de número endereço
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("999999")
# Incluindo valor de complemento
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("Complemento TESTE 123")
# Salvando cadastro de endereço principal
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Clicando no OK da mensagem de confirmação do endereço salvo
print("Endereço Principal OK")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Clicando no SIM na mensagem de Atenção/Confirmação
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Clicando no OK da mensagem de confirmação de proprietário salvo
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
print("Proprietário Salvo OK")
# Espera
wait = create_wait(driver)
# Scroll na tela para mostrar o endereço de correspondência
user_action = TouchAction(driver)
user_action.tap(x=1, y=1000).perform()
driver.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
).click()
user_action.press(x=550, y=2500).move_to(x=578, y=480).release().perform()
# Inclusão de Endereço de Correspondência
# Clicando no botão CADASTRAR do endereço de correspondência
print("Iniciando cadastro de endereço de correspondência")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Clicando botão CEP DE OUTRA UF
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Preenchendo informações do Endereço
# Município
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("ACRELÂNDIA")
# Tipo de Logradouro
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("Avenida")
# Endereço
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("ABEL SCUISSIATO")
# CEP
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("99999999")
# Bairro
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("Bairro Teste Appium sistema")
# Número
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("123456")
# Complemento
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("Complemento Teste APPIUM sistema Móvel")
# Salvando endereço de correspondência
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Aguarda até que o processo de salvamento finalize
wait = create_wait(driver)
print("Endereço de correspondência salvo com sucesso!")
# Clicando OK na mensagem de confirmação
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
print("Cadastro de endereço de correspondência OK")
# Clicando OK na confirmação de instrumento incluído
print("Instrumento incluído OK")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Incluindo valor de resultado para o serviço
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.*[@content-desc='ElementoGenerico']"
)
)
ele.click()
# Incluindo valor de Dígito da Marca de Verificação
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("4")
# Salvando o serviço do instrumento
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Clicando OK na mensagem de Dados do Instrumento
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
print("Instrumento Salvo com Resultado")
# Clicando no título de aba DADOS
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ACCESSIBILITY_ID, "Dados"
)
)
ele.click()
# Preenchendo a Aba Dados
print("Iniciando preenchimento da aba DADOS")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("2000")
# Número do Bloco Medidor
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("9999999999")
# Distribuidor
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("anonimizado")
# Identificador
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("99999999999999999999999999999999999999999999999999")
print("Concluído preenchimento da aba DADOS")
# Cadastro de irregularidades para o instrumento
# Acessando a aba de Irregularidades
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.*[@content-desc='ElementoGenerico']"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Inclusão irregularidade 999 observações
print("Iniciando preenchimento de Irregularidade")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:id/'ElementoGenerico'"
)
)
ele.send_keys("999")
# Observação da Irregularidade
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("Irregularidade Teste Android Appium Python")
# Quadro Demonstrativo = Sim
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Adicionando Irregularidade
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
print("Irregularidade de instrumento incluída")
# Validação da regra que não permite repetir irregularidade
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.send_keys("999")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
print("Validação regra de não repetir irregularidade de instrumento concluída com sucesso!")
# Salvando instrumento com irregularidade
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
print("Salvando instrumento com irregularidade")
# OK na Confirmação de serviço salvo com sucesso
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Processo de cobrança - Acessando a aba de Relatórios
print("Acessando aba Relatórios")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ACCESSIBILITY_ID, "Relatórios"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Clicando no botão que abre o Menu Lateral
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.ImageButton['ElementoGenerico']"
)
)
ele.click()
# Processo para deixar RD salvo
# Clicando no Botão de Relatório
print("Abrindo Relatório")
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.*['ElementoGenerico']"
)
)
ele.click()
sleep(1)
# Espera
wait = create_wait(driver)
# Clicando no botão para salvar o RD
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
sleep(1)
# Clicando OK na mensagem de Atenção
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
sleep(1)
# Abrindo lista de datas disponíveis
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
sleep(1)
# Selecionando a data mais alta na lista
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.*['ElementoGenerico']"
)
)
ele.click()
sleep(1)
# Clicando no botão para salvar o RD
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Clicando OK na mensagem de RD Salvo com sucesso
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
print("RD salvo com sucesso")
# Volta para a tela de Menu Principal
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ACCESSIBILITY_ID, "Navigate up"
)
)
ele.click()
# Clicando no botão que abre o Menu Lateral novamente
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.ImageButton['ElementoGenerico']"
)
)
ele.click()
# Iniciando processo de Backup
# Clicando no botão de Backup no Menu Lateral
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.*['ElementoGenerico']"
)
)
ele.click()
# Espera
wait = create_wait(driver)
print("Iniciando backup")
# Clicando no botão que realiza o Backup
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
print("Finalizando backup")
# Volta para a tela anterior de Menu Principal
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ACCESSIBILITY_ID, "Navigate up"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Abrindo a sincronia pelo Menu Principal
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Processo de sincronia envio de dados
print("Iniciada sincronia de envio de dados")
# Desmarcando sincronia de envio de dados
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Desmarcando sincronia de recebimento de escalas
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Desmarcando sincronia de atualização de endereços
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
# Clicando no botão para iniciar a sincronia
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
sleep(20)
print("Realizada sincronia de envio de dados")
# Espera
wait = create_wait(driver)
print("Sincronia de Envio OK")
# Volta para a tela anterior de Menu
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ACCESSIBILITY_ID, "Navigate up"
)
)
ele.click()
# Espera
wait = create_wait(driver)
# Saindo do aplicativo
# Clicando no botão que abre o Menu Lateral
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.ImageButton['ElementoGenerico']"
)
)
ele.click()
# Clicando no botão Sair no Menu Lateral
ele = wait.until(
lambda x: x.find_element(
AppiumBy.XPATH, "//android.widget.*['ElementoGenerico']"
)
)
ele.click()
# Clicando no botão SAIR na mensagem de confirmação
ele = wait.until(
lambda x: x.find_element(
AppiumBy.ID, "com.minhaempresa.com.br.appminhaempresa:'ElementoGenerico'"
)
)
ele.click()
print("Feito Logoff")
# Espera
wait = create_wait(driver)
# Saindo do aplicativo
print("Saindo do aplicativo")
driver.terminate_app("com.minhaempresa.com.br.appminhaempresa")
finally:
driver.quit()
print("Driver encerrado.")