-
Notifications
You must be signed in to change notification settings - Fork 10
/
点淘 .js
1883 lines (1744 loc) · 81.5 KB
/
点淘 .js
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
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* 点淘刷元宝autojs脚本
* author: walkingsky
* url:https://github.com/walkingsky/autojs_credit
*/
var _common_Function = require('./自动脚本/common.js');
var thread_egg = null;
////------------通用函数----------------
var _function = {
/**
* 打开应用,进入到元宝中心
*/
start: function () {
//let result = shell('am start com.taobao.live/com.taobao.live.home.activity.TaoLiveHomeActivity');
app.launch('com.taobao.live');
sleep(2000);
while (id('tl_home_capture_video_btn').findOne(2000) == null)
if (textContains('请按照说明进行验证').className('android.view.View').exists()) {
let i = 1;
while (textContains('请按照说明进行验证').className('android.view.View').exists() && i < 25) {
this.vibrate(1);
sleep(3000);
}
}
_common_Function.toast_console('等待“tl_home_capture_video_btn”按钮');
//阻断式等待
id('tl_home_capture_video_btn').findOne(2000);
sleep(500);
//每天第一次进入app ,有个青少年模式提示,点击任意地方会关闭这个弹层提示
if (textContains('青少年守护模式').exists())
_common_Function.click_by_id('tv_teenager_close');
this.find_yuanbaozhongxin_button();
_common_Function.toast_console('等待“提现”按钮');
//阻断式等待
textContains('提现').waitFor();
_common_Function.toast_console('成功启动app并进入元宝中心');
},
/**
* 等待间隔
*/
my_sleep: function (n) {
if (n && n > 0 && n < 100) {
//_common_Function.toast_console('等待' + n + '秒');
sleep(1000 * n);
}
else {
//_common_Function.toast_console('等待1秒');
sleep(1000);
}
},
/**
* 结束应用
*/
stop: function () {
_common_Function.toast_console('关闭应用');
app.openAppSetting('com.taobao.live');
if (device.brand == 'Redmi') {
sleep(500);
textContains('结束运行').waitFor();
textContains('强行停止').findOne(500).parent().click();
sleep(500);
textContains('确定').waitFor();
textContains('确定').findOne(1000).click();
this.my_sleep(1);
back();
} else {
sleep(500);
textContains('强行停止').waitFor();
textContains('强行停止').click();
sleep(500);
textContains('确定').waitFor();
textContains('确定').click();
this.my_sleep(1);
back();
}
_common_Function.toast_console('成功关闭应用');
},
/**
* 重启应用
*/
restart: function () {
this.stop();
this.start();
},
/**
* 转换时间字符串到秒钟
* @param {string} str 要转换的字符串
* @returns int 数字秒数
*/
str_to_seconds: function (str) {
let arr = str.split(':');
if (arr.length == 3)
return parseInt(arr[0]) * 3600 + parseInt(arr[1]) * 60 + parseInt(arr[2]);
else
return false;
},
/**
* 处理 “访问被拒绝” 页面出现
*/
op_refuse: function () {
if (textContains('访问被拒绝').exists() || id('baxia-punish').exists()) {
_common_Function.toast_console('++出现“访问被拒绝”');
back();
this.my_sleep(1);
if (textContains('访问被拒绝').exists() || id('baxia-punish').exists()) {
_common_Function.toast_console('==出现“访问被拒绝”');
back();
this.my_sleep(1);
}
}
},
/**
* 浏览视频的操作
* @param {bool} live 是否是直播(关闭按钮的id 不一样) true:是直播;其他:视频
*/
view: function (live) {
_common_Function.toast_console('进入view函数:(' + live + ')');
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.1, 400);
this.my_sleep(6);
// 判断是否有活动弹层
if (id('bg-img').className('android.widget.Image').exists()) {
swipe(100, 1400, 990, 1430, 400);
}
let i = 0;
try {
while (true) {
//this.op_refuse();
//翻倍操作
if (id('gold_action_text').exists())
if (id('gold_action_text').findOne().text() == '点击翻倍' || id('gold_action_text').findOne().text() == '点击 x4 倍')
_common_Function.click_by_id('gold_action_layout');
//判断广告弹窗
if (textContains('6000000007641-2-tps').exists())
textContains('6000000007641-2-tps').findOne().click();
if (!(textContains('后完成').exists() || textContains('后发奖').exists() ||
textContains('后领奖').exists() || textContains('滑动浏览').exists()
|| textContains('秒领奖').exists())) {
this.my_sleep(3); //偶尔会有未完成任务提示,故增加延时
break;
}
this.my_sleep(1);
i++;
//定时划屏
let a = 5; //设定划屏间隔 6* sleep(1000)
if (live) {
a = 15
}
if (i % a == 0) {
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.1, 400);
this.my_sleep(1);
}
}
//模拟点击返回按钮
if (back()) {
_common_Function.toast_console('按键返回操作返回成功');
} else {
////原来点击按钮的操作,作为一个备份方案
if (live) {
if (!_common_Function.click_by_id('taolive_close_btn'))
_common_Function.click_by_id('back');
} else
_common_Function.click_by_id('back');
}
this.my_sleep(2);
//有时会出现 “残忍离开” 弹层提示
if (textContains('残忍离开').id('negative').exists())
textContains('残忍离开').id('negative').findOne().click();
} catch (error) {
_common_Function.toast_console(error);
}
_common_Function.toast_console('退出view函数');
},
/**
* 看直播
*/
view_live: function () {
_common_Function.toast_console('进入view_live函数');
this.my_sleep(8); //有时候 计时 控件捕捉不到,加大延时看能否确保能够捕捉到
//this.op_refuse();
live_title = '';
var live = true;
if (textContains('后完成').exists() || textContains('后发奖').exists() ||
textContains('滑动浏览').exists() || textContains('后领奖').exists()
|| textContains('秒领奖').exists()) { //直接进入的,不用点击“看直播60秒按钮”
live_title = '后完成';
if (textContains('后发奖').exists())
live_title = '后发奖';
else if (textContains('后领奖').exists())
live_title = '后领奖';
else if (textContains('滑动浏览').exists())
live_title = '滑动浏览';
else if (textContains('秒领奖').exists())
live_title = '秒领奖';
} else {
_common_Function.toast_console('计时按钮未找到,退出!');
//var live = _common_Function.click_by_textcontains('看直播60秒'); //看直播的按钮
//back();
}
_common_Function.toast_console('live_title =' + live_title);
this.my_sleep(1);
if (live) {
var i = 0;
var first_check = 0;
while (live_title != '') {
//this.op_refuse();
//关闭弹窗
if (className('android.widget.Image').textContains('7508-2-tps-56-56').exists()) {
className('android.widget.Image').textContains('7508-2-tps-56-56').findOne(2000).click();
}
//翻倍操作
if (id('gold_action_text').exists())
if (id('gold_action_text').findOne().text() == '点击翻倍' || id('gold_action_text').findOne().text() == '点击 x4 倍')
_common_Function.click_by_id('gold_action_layout');
if (!textContains(live_title).exists()) {
if (textContains('请按照说明进行验证').className('android.view.View').exists()) {
//this.my_sleep(1);
_function.vibrate(1);
first_check++;
if (first_check < 1)
back();
}
else
break;
}
if (live_title != '后完成') //先划一次屏
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.1, 400);
this.my_sleep(2);
i++;
//定时划屏
if (i % 5 == 0) {
if (textContains('请按照说明进行验证').className('android.view.View').exists()) {
_function.vibrate(1);
} else {
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.1, 400);
this.my_sleep(2);
}
}
}
//返回
this.my_sleep(3);
if (!back()) { //原来点击按钮的操作,作为一个备份方案
_common_Function.toast_console('按键返回没有生效');
if (!_common_Function.click_by_id('taolive_close_btn')) {
if (textContains('返回').indexInParent(0).exists())
textContains('返回').indexInParent(0).findOne().click();
else if (id('back').indexInParent(0).exists())
id('back').indexInParent(0).findOne().click();
else
_common_Function.click_by_text('TB1QlFqglFR4u4jSZFPXXanzFXa-40-72');
}
} else {
this.my_sleep(1);
_common_Function.toast_console('按键返回操作返回成功');
}
//有个是否使用的 提示,选择不使用
if (textContains('残忍离开').exists())
textContains('残忍离开').findOne().click();
}
_common_Function.toast_console('退出view_live函数');
},
/**
* 查找元宝中心按钮
*/
find_yuanbaozhongxin_button: function () {
idContains('gold_common_image').waitFor();
_common_Function.click_by_id('gold_common_image');
},
/**
* 额外领,貌似是一个比较老的功能了
*/
view_ewailing: function () {
this.my_sleep(1);
_common_Function.toast_console('进入额外领');
try {
while (true) {
let remain = textContains('|跳过').indexInParent(1).findOne(5000);
if (remain)
this.my_sleep(1);
else
break;
}
idContains("tt_reward_full_count_down_after").findOne(5000).click();
this.my_sleep(3);
} catch (e) {
_common_Function.toast_console('进入额外领错误:' + e);
}
_common_Function.toast_console('退出额外领');
},
//签到
sign: function () {
textContains('去签到').depth(23).indexInParent(4).findOne().click();
//_common_Function.click_by_text('去签到');
this.my_sleep(2);
this.view_live();
className("android.view.View").clickable(true).depth(16).findOne(3000).click(); //返回元宝中心
},
/**
* 判断页面是否在元宝中心,如果不在的话就重启应用
*/
yuanbaozhongxin: function () {
let elment = textContains('提现').findOne(2000);
if (elment)
_common_Function.toast_console('成功进入元宝中心');
else
this.restart();
},
/**
* 获取领奖剩余时间(从元宝中心开始)
* @returns init 开奖剩余秒数;-1: 没找到领奖标识,返回-1
*/
get_lingjiang_remaining: function () {
_common_Function.toast_console('获取领奖剩余时间');
var remaining = 0;
try {
while (true) {
let b = className('android.view.View').depth(29).indexInParent(1).find();
let c = className('android.view.View').depth(26).indexInParent(1).find();
let d = className('android.view.View').depth(30).indexInParent(1).find();
let e = className('android.view.View').depth(27).indexInParent(1).find();
let f = className('android.view.View').depth(31).indexInParent(1).find();
let g = className('android.view.View').depth(12).indexInParent(1).find();
let a = [].concat(b, c, d, e, f, g);
if (a.length == 0) {
_common_Function.toast_console('没找到组件');
return -1;
}
let re = /\d{2}:\d{2}:\d{2}/;
a.forEach(element => {
if (element.text() == '领取奖励') {
_common_Function.toast_console('领取奖励');
element.click();
this.my_sleep(3);
if (textContains('浏览30秒得至少').exists()) {
textContains('浏览30秒得至少').findOne().parent().click();
this.my_sleep(2);
this.view_live();
}
else if (text('O1CN01LxFPWH1Mmy2hurJW4_!!6000000001478-2-tps-54-54.png_').exists())
text('O1CN01LxFPWH1Mmy2hurJW4_!!6000000001478-2-tps-54-54.png_').findOne().click();
else if (text('O1CN01X0rl5C1sKAxZ9QxCt_!!6000000005747-2-tps-512-276.png_').exists())
text('O1CN01X0rl5C1sKAxZ9QxCt_!!6000000005747-2-tps-512-276.png_').findOne().click();
this.my_sleep(3);
lingjiang = true;
_common_Function.toast_console('完成领取奖励');
}
if (re.exec(element.text())) {
remaining = _function.str_to_seconds(element.text());
}
});
if (remaining != 0 && remaining != false)
break;
}
} catch (error) {
_common_Function.toast_console(error);
return -1;
}
_common_Function.toast_console('领奖剩余时间:' + remaining);
return remaining;
},
/**
* 获取走路鸭喝饮料的剩余时间(从元宝中心开始)
* @returns int -1:执行错误
*/
get_drink_remaining: function () {
this.my_sleep(5);
var remaining = 0;
_common_Function.toast_console('获取走路鸭喝饮料的剩余时间');
try {
var zhanbushu_button_text = 'O1CN01IeRzpJ1hSSJ53VxuH_!!6000000004276-2-tps-116-132.png_';
textContains('走路赚元宝').findOne(3000).click();
this.my_sleep(2);
let temp = textContains(zhanbushu_button_text).findOne(5000);
if (!temp) {
_common_Function.toast_console('获取走路鸭喝饮料的剩余时间:没有找到赚步数按钮,返回');
return -1;
}
while (true) {
//点击空白,关闭可能打开的任务列表
click(150, 300);
this.my_sleep(1);
let lingqu_button = idContains('page').findOne(2000);
// 饮料领取剩余时间
let lingqu_button_text = lingqu_button.child(1).child(7).child(0).child(1).text();
_common_Function.toast_console('领取饮料奖励:' + lingqu_button_text);
if (lingqu_button_text == '领取') {
lingqu_button.child(1).child(7).child(0).child(1).click();
this.my_sleep(3);
}
if (lingqu_button_text == '明日再来') {
remaining = -1;
break;
}
let re = /\d{2}:\d{2}:\d{2}/;
if (re.exec(lingqu_button_text)) {
remaining = _function.str_to_seconds(lingqu_button_text);
}
if (remaining != 0 && remaining != false)
break;
}
} catch (error) {
_common_Function.toast_console('获取走路鸭喝饮料的剩余时间:' + error);
if (className('android.view.View').depth(16).indexInParent(1).exists())
className('android.view.View').depth(16).indexInParent(1).findOne(2000).click();
return -1;
}
_common_Function.toast_console('领奖剩余时间:' + remaining);
//关闭弹出的广告
if (idContains('tl_dx_card_container').className('android.widget.RelativeLayout').exists()) {
let _layout_element = idContains('tl_dx_card_container').className('android.widget.RelativeLayout').findOne(2000);
_layout_element.child(0).child(2).click();
_function.my_sleep(2);
}
if (className('android.view.View').depth(16).indexInParent(1).exists())
className('android.view.View').depth(16).indexInParent(1).findOne(2000).click();
else if (className('android.view.View').depth(8).indexInParent(1).exists())
className('android.view.View').depth(8).indexInParent(1).findOne(2000).click();
else
back();
return remaining;
},
/**
* 查看是打工是否完成,领取元宝
*/
lingyuanbao: function () {
// 查看是否可以领取元宝
if (idContains('action-main').exists()) {
let _action_main = idContains('action-main').className('android.view.View').findOne(5000);
if (_action_main.childCount() > 2 && _action_main.child(0).text() == '领取' && _action_main.child(2).text() == '元宝') {
_common_Function.toast_console('领取元宝奖励');
_action_main.click();
this.my_sleep(2);
let zhibo = textMatches('.*秒得.*元宝').findOne(3000);
if (zhibo) {
textMatches('.*秒得.*元宝').findOne(3000).click();
_function.view_live();
} else if (textContains('我知道了').exists()) {
textContains('我知道了').findOne(3000).click();
}
}
} else {
_common_Function.toast_console('领取元宝还未到时间');
}
this.my_sleep(2);
if (idContains('action-main').textContains('去打工赚钱').exists()) {
if (idContains('action-main').textContains('去打工赚钱').exists()) {
idContains('action-main').textContains('去打工赚钱').findOne(3000).click();
this.my_sleep(1);
if (_common_Function.click_by_text('+888')) {
_function.my_sleep(1);
_common_Function.click_by_text('开始打工');
}
this.my_sleep(2);
}
}
},
/**
* 获取打工完成剩余时间
*/
get_work_remaining: function () {
this.my_sleep(5);
_common_Function.toast_console('获取工鸭领完成打工的剩余时间');
//可能会报错,异常退出,添加是否在元宝中心的判断
_function.yuanbaozhongxin();
textContains('打工赚元宝').findOne(3000).click();
this.my_sleep(6);
if (className('android.view.View').textContains('打工中').exists() && idContains('action-main').className('android.view.View').exists()) {
let _elment = className('android.view.View').textContains('打工中').findOne(2000).parent();
let _work_remaining_text = _elment.child(0).text() + _elment.child(1).text() + _elment.child(2).text()
+ _elment.child(3).text() + _elment.child(4).text() + _elment.child(5).text()
+ _elment.child(6).text() + _elment.child(7).text();
_common_Function.toast_console(_work_remaining_text);
let re = /\d{2}:\d{2}:\d{2}/;
if (re.exec(_work_remaining_text)) {
remaining = _function.str_to_seconds(_work_remaining_text);
} else {
remaining = -1;
}
} else
remaining = -1;
_common_Function.toast_console('领取剩余时间:' + remaining);
back();
return remaining;
},
/**
* 获取打工鸭领取体力的剩余时间(从元宝中心开始)
* @returns int -1:执行错误
*/
get_tili_remaining: function () {
this.my_sleep(5);
var remaining = 0;
_common_Function.toast_console('获取工鸭领取体力的剩余时间');
try {
var zhuantili_button_text = 'O1CN01vWC7gg20DmKvWaURW_!!6000000006816-2-tps-248-246.png_';
textContains('打工赚元宝').findOne(3000).click();
this.my_sleep(2);
let temp = textContains(zhuantili_button_text).findOne(5000);
if (!temp) {
_common_Function.toast_console('获取工鸭领取体力的剩余时间:没有找到赚体力按钮,返回');
return -1;
}
while (true) {
//点击空白,关闭可能打开的任务列表
click(400, 300);
this.my_sleep(1);
// 查看是否可以领取元宝
this.lingyuanbao();
let lingqu_button = idContains('action-drink').findOne(5000);
if (className('android.view.View').textContains('已领完').exists() || lingqu_button == null) { //体力已领完
remaining = -1;
break;
}
// 饮料领取剩余时间
let lingqu_button_text = lingqu_button.child(2).text();
if (lingqu_button_text == '0') {
lingqu_button_text = lingqu_button.child(2).text() + lingqu_button.child(3).text() + ':';
lingqu_button_text = lingqu_button_text + lingqu_button.child(5).text() + lingqu_button.child(6).text() + ':';
lingqu_button_text = lingqu_button_text + lingqu_button.child(8).text() + lingqu_button.child(9).text();
}
_common_Function.toast_console('领取体力:' + lingqu_button_text);
if (lingqu_button_text == '去领取') {
lingqu_button.click();
this.my_sleep(3);
} else {
lingqu_button_text = lingqu_button.child(2).text() + lingqu_button.child(3).text() + lingqu_button.child(4).text() + lingqu_button.child(5).text()
+ lingqu_button.child(6).text() + lingqu_button.child(7).text() + lingqu_button.child(8).text() + lingqu_button.child(9).text();
}
let re = /\d{2}:\d{2}:\d{2}/;
if (re.exec(lingqu_button_text)) {
remaining = _function.str_to_seconds(lingqu_button_text);
}
if (remaining != 0 && remaining != false)
break;
}
} catch (error) {
_common_Function.toast_console('获取工鸭领取体力的剩余时间:' + error);
if (className('android.view.View').depth(16).indexInParent(0).exists())
className('android.view.View').depth(16).indexInParent(0).findOne(2000).click();
return -1;
}
_common_Function.toast_console('领取剩余时间:' + remaining);
//className('android.view.View').depth(16).indexInParent(0).findOne(2000).click();
back();
return remaining;
},
//浏览元宝商城
view_shangcheng: function () {
//定时划屏
let tmp = false;
for (let i = 0; i < 60; i++) {
if (className('android.widget.ImageView').depth(9).indexInParent(3).exists() && tmp == false) {
className('android.widget.ImageView').depth(9).indexInParent(3).findOne().click();
tmp = true;
}
if (i % 3 == 0)
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.7, 800);
this.my_sleep(1);
}
this.my_sleep(2);
//返回按钮
className('android.view.View').depth(16).indexInParent(0).findOne(1000).click();
},
/**
* 浏览网页的任务
* @param {string} miao 浏览的秒数
*/
view_web: function (miao) {
let button = className('android.view.View').depth(22).indexInParent(0).findOne(2000);
try {
if (button) {
var i = 0;
while (true) {
//let button = className('android.view.View').depth(22).indexInParent(0).findOne(2000);
let button = textContains('滑动浏览').findOne(2000);
if (button == null)
button = textContains('任务').indexInParent(0).findOne(2000);
if (button == null)
button = textContains('任务').indexInParent(1).findOne(2000);
_common_Function.toast_console('view_web:' + button.text());
if (button.text() != '滑动浏览' + miao + '秒')
break;
i++;
if (i % 3 == 0) {
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.5, 800);
sleep(10);
swipe(device.width / 2, device.height * 0.4, device.width / 2, device.height * 0.9, 800);
}
this.my_sleep(1);
}
}
} catch (error) {
_common_Function.toast_console('view_web 执行错误:' + error);
}
try {
if (text('TB1QlFqglFR4u4jSZFPXXanzFXa-40-72').exists())
_common_Function.click_by_text('TB1QlFqglFR4u4jSZFPXXanzFXa-40-72');
else if (textContains('返回>').indexInParent(0).exists())
textContains('返回>').indexInParent(0).findOne().click();
else if (text('TB1Iax1R.T1gK0jSZFrXXcNCXXa-40-72').exists()) {
_common_Function.click_by_text('TB1Iax1R.T1gK0jSZFrXXcNCXXa-40-72');
} else {
_common_Function.toast_console('没找到返回按钮,可能会导致后面的执行出错');
}
} catch (error) {
_common_Function.toast_console('view_web 返回错误:' + error);
}
},
/**
* 播放音乐
* @param {int} kind 类型
*/
play_music: function (kind) {
var MediaPlayer = android.media.MediaPlayer;
var player = new MediaPlayer();
switch (kind) {
case 1:
player.setDataSource("file:///sdcard/music.mp3");
break;
case 2:
player.setDataSource("file:///sdcard/music.mp3");
break;
default:
player.setDataSource("file:///sdcard/music.mp3");
break;
}
player.prepare();
player.start();
},
/**
* 震动手机
* @param {int} second 震动的秒数,整数
*/
vibrate: function (second) {
//var vibrator = context.getSystemService(Context.VIBRATOR_SERVICE);
//vibrator.vibrate(1000 * second);
device.vibrate(1000 * second);
_common_Function.toast_console('震动一次');
}
}
//////////////////////// 应用
var app_taolive = {
/**
* 点淘签到任务 (从元宝中心开始)
*/
diantao_sign: function () {
//双11预热广告弹窗
if (className('android.widget.ImageView').depth(9).indexInParent(3).exists()) {
_common_Function.toast_console('双11预热广告弹窗');
className('android.widget.ImageView').depth(9).indexInParent(3).findOne().click();
}
//每日收益
if (_common_Function.click_by_text('每日收益')) {
_function.my_sleep(4);
className('android.view.View').depth(16).indexInParent(1).find()[0].click();
}
_function.yuanbaozhongxin();
//签到
_function.sign();
_function.yuanbaozhongxin();
/* 取消提现操作
//提现
let tixian = _common_Function.click_by_text('提现');
if (tixian == false)
return;
_function.my_sleep(2);
_common_Function.click_by_text('提现到支付宝');
_function.my_sleep(2);
try {
if (textContains('看60秒直播才能提现').exists()) {
_common_Function.click_by_text('看直播');
_function.view_live();
_function.my_sleep(1);
_common_Function.click_by_text('提现到支付宝');
}
_common_Function.click_by_text('确认提现');
let tixianchenggong = textContains('提现成功').findOne(6000);
if (tixianchenggong) {
_common_Function.click_by_textcontains('查看提现进度');
descContains('转到上一层').findOne(2000).click();
}
descContains('转到上一层').findOne(2000).click();
} catch (error) {
_common_Function.toast_console('签到错误' + error);
}
*/
//className("android.view.View").clickable(true).depth(25).indexInParent(1).findOne().click();
},
//今日签到
today_sign: {
do_task: function (task_name, kind) {
if (text(task_name).indexInParent(0).exists()) {
_common_Function.toast_console('今日签到"' + task_name + '":进入任务');
let i = 1;
while (true) {
_common_Function.toast_console('今日签到 执行:' + task_name);
let p = text(task_name).indexInParent(0).findOne().parent();
if (p.child(5).text() == '去完成') {
p.parent().parent().click();
_function.my_sleep(1);
if (kind == 'view')
_function.view(false);
else
_function.view_live();
_common_Function.toast_console('今日签到 执行:' + task_name + '完成' + i + '次');
i++;
_function.my_sleep(1);
//关闭弹窗
if (className('android.widget.Image').textContains('00001380-2-tps-60-60').exists())
className('android.widget.Image').textContains('00001380-2-tps-60-60').findOne().click();
} else {
_common_Function.toast_console('今日签到 执行:' + task_name + '已完成');
break;
}
}
} else {
_common_Function.toast_console('今日签到"' + task_name + '":任务未找到');
}
//关闭弹窗?
if (textContains('2-tps-60-60.png_').exists())
textContains('2-tps-60-60.png_').findOne().click();
_function.my_sleep(2);
},
zhuanyuanbao: function () {
//做任务得元宝
_common_Function.toast_console('做任务得元宝');
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.1, 400);
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.1, 400);
try {
var i = 0;
while (true) {
if (i % 2 == 0)
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.7, 600);
_function.my_sleep(1);
if (textContains('今日任务已完成').exists())
break;
i++;
}
_function.my_sleep(2);
swipe(device.width / 2, device.height * 0.9, device.width / 2, device.height * 0.1, 400);
} catch (error) {
_common_Function.toast_console('做任务得元宝错误:' + error);
}
_common_Function.toast_console('完成做任务得元宝');
},
open_task_page: function () {
//等待 提示
_function.my_sleep(5);
if (textContains('做任务赚更多元宝').exists()) {
textContains('做任务赚更多元宝').findOne().click();
}
if (textContains('今日签到').exists()) {
textContains('今日签到').findOne().parent().click();
_function.my_sleep(5);
let _img = textContains('00320-2-tps-548-188.png').className('android.widget.Image').findOne(2000);
if (_img != null) {
let _cnt = _img.parent().child(0).text();
if (_cnt == '1次') {
_img.parent().click();
_function.my_sleep(5);
if (textContains('001380-2-tps-60-60.png').className('android.widget.Image').exists()) {
textContains('001380-2-tps-60-60.png').className('android.widget.Image').findOne().click();
}
}
}
textContains('tps-798-80.png_').findOne(5000);
this.do_task('看精选推荐30秒', 'view');
_function.my_sleep(2);
this.do_task('看小视频30秒', 'live');
_function.my_sleep(2);
this.do_task('看省钱专区30秒', 'view');
_function.my_sleep(2);
this.do_task('看精彩内容30秒', 'view');
_function.my_sleep(2);
this.do_task('看上新好物30秒', 'view');
_function.my_sleep(2);
this.zhuanyuanbao();
_function.my_sleep(2);
//返回 退出
back();
if (device.brand == 'Redmi') {
sleep(500);
back();
}
_common_Function.toast_console('今日签到:任务完成');
} else {
_common_Function.toast_console('今日签到:没找到元素');
}
}
},
//赚钱卡
make_money_card: {
//是否有赚钱卡任务
is_have: function () {
if (textContains('赚钱卡').className('android.view.View').exists())
return true;
return false;
},
//执行赚钱卡任务
do_task: function () {
//进入赚钱卡任务
_common_Function.toast_console('进入赚钱卡任务');
let _card = textContains('赚钱卡').className('android.view.View').findOne(2000);
if (_card != null) {
_card.parent().click();
_function.my_sleep(2);
this.get_prize();
this.do_list_task('看精彩内容30秒');
_function.my_sleep(1);
this.do_list_task('浏览省钱专区30秒');
this.get_prize();
_function.my_sleep(1);
this.do_list_task('浏览上新好物30秒');
this.get_prize();
_function.my_sleep(1);
this.do_float_task('看视频30秒', true);
this.get_prize();
_function.my_sleep(1);
this.do_float_task('看小视频30秒', true);
this.get_prize();
_function.my_sleep(1);
this.do_float_task('看精选推荐30秒', false);
this.get_prize();
_function.my_sleep(1);
this.do_float_task('看省钱专区30秒', false);
this.get_prize();
_function.my_sleep(1);
} else {
_common_Function.toast_console('赚钱卡组件没找到');
}
while (textContains('加速赚更多元宝').className('android.view.View').exists()) {
//退回到元宝中心
_function.my_sleep(1);
this.get_prize();
_function.my_sleep(1);
//back();
if (textContains('000001102-55-tps-52').className('android.widget.Image').exists()) {
textContains('000001102-55-tps-52').className('android.widget.Image').findOne().click();
} else
back();
_function.my_sleep(2);
}
_common_Function.toast_console('退出赚钱卡任务');
},
//加速赚更多元宝列表任务
do_list_task: function (title) {
_common_Function.toast_console(title + '列表任务');
let i = 1;
while (true) {
if (text(title).className('android.view.View').indexInParent(1).exists()) {
let _task = text(title).className('android.view.View').indexInParent(1).findOne().parent();
if (_task.child(6).text() == '去完成') {
_task.click();
_function.my_sleep(1);
_function.view();
_function.my_sleep(1);
this.get_prize();
_function.my_sleep(1);
_common_Function.toast_console(title + '列表任务执行' + i + '次');
i++;
} else {
_common_Function.toast_console(title + '列表任务' + _task.child(6).text());
break;
}
_common_Function.toast_console(title + '列表任务执行完成');
} else {
_common_Function.toast_console(title + '列表任务 没有找到元素');
break;
}
}
_function.my_sleep(1);
},
//执行悬浮球的任务
do_float_task: function (title, live) {
_common_Function.toast_console(title + '悬浮球任务');
if (text(title).className('android.view.View').indexInParent(1).exists()) {
let _task = text(title).className('android.view.View').indexInParent(1).findOne().parent();
_task.click();
_function.my_sleep(1);
if (live)
_function.view_live();
else
_function.view();
_function.my_sleep(1);
_common_Function.toast_console(title + '悬浮球任务执行完成');
} else {
_common_Function.toast_console(title + '悬浮球任务 没有找到元素');
}
_function.my_sleep(1);
},
//领奖
get_prize: function () {
if (textContains('领奖').className('android.view.View').indexInParent(4).exists()) {
_common_Function.toast_console('点击领奖');
textContains('领奖').className('android.view.View').indexInParent(4).findOne().click();
_function.my_sleep(1);
_function.view_live();
_function.my_sleep(1);
} else if (textContains('直播间').className('android.view.View').indexInParent(4).exists()) {
_common_Function.toast_console('点击直播间');
if (textContains('tps-54-54.png').className('android.widget.Image').exists())
textContains('tps-54-54.png').className('android.widget.Image').findOne().click();
}
else
_common_Function.toast_console('没有弹窗');
_function.my_sleep(1);
}
},
//睡觉赚元宝
sleep_yuanbao: {
//执行任务
do_task: function () {
_common_Function.toast_console('进入睡觉赚元宝');
let _card = textContains('睡觉赚元宝').className('android.view.View').findOne(2000);
if (_card != null) {
_card.parent().click();
_function.my_sleep(2);
if (textContains('开始午睡').className('android.view.View').exists()) {
textContains('开始午睡').className('android.view.View').findOne(2000).click();
_function.my_sleep(1);
}
if (textContains('开始睡觉').className('android.view.View').exists()) {
textContains('开始睡觉').className('android.view.View').findOne(2000).click();
_function.my_sleep(1);
}