forked from zhuxuedefeng/AiQiangGUO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAi强国 UI.js
2826 lines (2725 loc) · 112 KB
/
Ai强国 UI.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
"ui";
/*
runtime.loadJar('./jsoup-1.12.1.jar');
importClass(org.jsoup.Jsoup);
importClass(org.jsoup.nodes.Document);
importClass(org.jsoup.select.Elements);
*/
importClass(android.database.sqlite.SQLiteDatabase);
/**代码原作者
* @Description: Auto.js xxqg-helper https://github.com/ivanwhaf/xxqg-helper
* @version: 3.1.3
* @Author: Ivan
* @Date: 2020-6-10
*/
/**修改版
* @Description: Auto.js AiQiangGuo 1+(12)+(6+6)+5+6+2+1+(1+1)+1=42分
* @version: 2.19-2020.12
* @Author: fengwuying
* @Date: 2020-12
*/
//原始代码来自ivanwhaf 基于播报按钮进行判断点击来自chongyadong 基于题目对比答题来自Ivan-cn。另有部分代码移植自lolisaikou
//版本号命名规则:学习强国版本号-年月,如遇本月有重大升级,增加日期。小版本迭代不变,
//执行逻辑为:文章 12篇30秒(含前2篇文章分享点赞评论),视频 6个60秒,本地频道,挑战答题 1轮*5题,每日答题(至领取奖励已达今日上限),之后循环检查 文章个数时长积分、视频个数积分,本地,挑战,每日答题 积分,不足则循环执行。以上足够之后,检查分享评论积分,不足则学习2篇文章执行分享点赞评论;检查视频时长,不足则收听广播补时长(注意广播不会自动退出,但不影响接下来执行);检查双人对战积分,<1执行一次双人对战;检查争上游答题积分,<2执行两次争上游答题。
//双人对战和争上游答题为基于延时执行,不算很准确,重在参与(参与分1+2)。提取的题目(已去除题目号1. 2.)在题库中搜索不到答案。争上游两轮结束判断偶尔出错导致执行报错,故放在最后执行。这两项可以提前手动答题,均为单选题也可执行中辅助点击。
console.setGlobalLogConfig({ "file": "/sdcard/脚本/AiQiangGuo运行日志.txt" });
var aCount = 12;//文章默认学习篇数
var vCount = 7;//小视频默认学习个数
var cCount = 2;//收藏+分享+评论次数
var aTime = 30;//每篇文章学习-30秒 30*12≈360秒=6分钟
var vTime = 60;//每个小视频学习60秒
var rTime = 360;//音视频时长-6分钟
var dyNum = 2;//订阅 2
var commentText = ["支持党,支持国家!", "为实现中华民族伟大复兴而不懈奋斗!", "不忘初心,牢记使命"];//评论内容,可自行修改,大于5个字便计分
var num = random(0, commentText.length - 1) ;//随机数
var aCat = ["推荐","要闻","综合"];
var aCatlog = aCat[num] ;//文章学习类别,随机取"推荐""要闻"、"新思想"
var aZX = 1;//文章执行1或2脚本
var date_string = getTodayDateString();//获取当天日期字符串
var vCat = ["第一频道", "学习视频", "联播频道"];
var vCatlog = vCat[num] ; //视频学习类别,随机取 "第一频道"、"学习视频"、"联播频道"
if (num == 0){
var s = "央视网";
}else if (num == 1){
var s = "央视新闻";
}else {
var s = "中央广播电视总台";
}
var lCount = 1;//挑战答题轮数
var qCount = random(5, 7);//挑战答题每轮答题数(5~7随机)
var zCount = 2;//争上游答题轮数
var zsyzd =1;//争上游和双人对战是否自动做,1,2 默认自动1
var oldaquestion;//争上游和对战答题循环,定义旧题目对比新题目用20201022
var myScores = {};//分数
//特殊题,特点:题目一样,答案不同
var ZiXingTi = "选择词语的正确词形。"; //字形题
var DuYinTi = "选择正确的读音。";//读音题 20201211
var ErShiSiShi ="下列不属于二十四史的是。";//二十四史
var customize_flag = false;//自定义运行标志
/********************************************UI部分***********************************************/
ui.layout(
<vertical>
<text textSize="18sp" textColor="red" text="AiQiangGuo Ver2.19-2020.12.12" />
<button id="all" h="50" text="积分执行" />
<button id="customize" h="50" text="顺序执行" />
<button id="cq" h="50" text="挑战答题" />
<button id="dq" h="50" text="每日答题" />
<button id="sr" h="50" text="双人对战" />
<button id="zsy" h="50" text="争上游答题" />
<button id="stop" h="50" text="停止运行" />
<horizontal>
<text textSize="15sp" marginLeft="15" textColor="black" text="文章频道:" />
<input id="aCatlog" w="55" text="" />
<text textSize="15sp" marginLeft="15" textColor="black" text="日期:" />
<input id="date_string" w="110" text="" />
</horizontal>
<horizontal>
<text textSize="15sp" marginLeft="15" textColor="black" text="文章数量:" />
<input id="aCount" w="30" text="" />
<text textSize="15sp" marginLeft="15" textColor="black" text="时长:" />
<input id="aTime" w="30" text="" />
<text textSize="15sp" marginLeft="15" textColor="black" text="执行:" />
<input id="aZX" w="30" text="" />
</horizontal>
<horizontal>
<text textSize="15sp" marginLeft="15" textColor="black" text="视频频道:" />
<input id="vCatlog" w="80" text="" />
<text textSize="15sp" marginLeft="15" textColor="black" text="关键词:" />
<input id="s" w="150" text="" />
</horizontal>
<horizontal>
<text textSize="15sp" marginLeft="15" textColor="black" text="视频数量:" />
<input id="vCount" w="30" text="" />
<text textSize="15sp" marginLeft="15" textColor="black" text="时长:" />
<input id="vTime" w="30" text="" />
</horizontal>
<horizontal>
<text textSize="15sp" marginLeft="15" textColor="black" text="挑战次数:" />
<input id="lCount" w="30" text="" />
<text textSize="15sp" marginLeft="15" textColor="black" text="答题:" />
<input id="qCount" w="30" text="" />
<text textSize="15sp" marginLeft="15" textColor="black" text="争上游次数:" />
<input id="zCount" w="30" text="" />
</horizontal>
<button w="250" layout_gravity="center" id="about" text="使用说明" />
</vertical>
);
ui.aCatlog.setText(aCatlog.toString());
ui.date_string.setText(date_string.toString());
ui.aCount.setText(aCount.toString());
ui.aTime.setText(aTime.toString());
ui.aZX.setText(aZX.toString());
ui.vCatlog.setText(vCatlog.toString());
ui.s.setText(s.toString());
ui.vCount.setText(vCount.toString());
ui.vTime.setText(vTime.toString());
ui.lCount.setText(lCount.toString());
ui.qCount.setText(qCount.toString());
ui.zCount.setText(zCount.toString());
var thread = null;
ui.all.click(function () {
if (thread != null && thread.isAlive()) {
alert("注意", "脚本正在运行,请结束之前进程");
return;
}
toast("开始积分判断运行");
thread = threads.start(function () {
aCatlog = ui.aCatlog.getText();
vCatlog = ui.vCatlog.getText();
aZX = parseInt(ui.aZX.getText());
lCount = parseInt(ui.lCount.getText());
qCount = parseInt(ui.qCount.getText());
zCount = parseInt(ui.zCount.getText());
main();
});
});
ui.customize.click(function () {
if (thread != null && thread.isAlive()) {
alert("注意", "脚本正在运行,请结束之前进程");
return;
}
toast("开始自定义运行");
thread = threads.start(function () {
aCatlog = ui.aCatlog.getText();
date_string = parseInt(ui.date_string.getText());
vCatlog = ui.vCatlog.getText();
s = ui.s.getText();
aCount = parseInt(ui.aCount.getText());
aTime = parseInt(ui.aTime.getText());
aZX = parseInt(ui.aZX.getText());
vCount = parseInt(ui.vCount.getText());
vTime = parseInt(ui.vTime.getText());
lCount = parseInt(ui.lCount.getText());
qCount = parseInt(ui.qCount.getText());
zCount = parseInt(ui.zCount.getText());
customize_flag = true;
console.log('文章频道:' + aCatlog.toString() + '日期:' + date_string)
console.log('文章数量:' + aCount.toString() + '篇')
console.log('视频频道:' + vCatlog.toString() + '关键词' + s)
console.log('视频数量:' + vCount.toString() + '个')
main();
});
});
ui.cq.click(function () {//挑战答题
auto.waitFor();//等待获取无障碍辅助权限
if (thread != null && thread.isAlive()) {
alert("注意", "脚本正在运行,请结束之前进程");
return;
}
thread = threads.start(function () {
lCount = parseInt(ui.lCount.getText());
qCount = parseInt(ui.qCount.getText());
start_app();
challengeQuestion();
threads.shutDownAll();
console.hide();
engines.stopAll();
exit();
});
});
ui.dq.click(function () {//每日答题
auto.waitFor();//等待获取无障碍辅助权限
if (thread != null && thread.isAlive()) {
alert("注意", "脚本正在运行,请结束之前进程");
return;
}
thread = threads.start(function () {
start_app();
dailyQuestion();
threads.shutDownAll();
console.hide();
engines.stopAll();
exit();
});
});
ui.sr.click(function () {//双人对战
auto.waitFor();//等待获取无障碍辅助权限
if (thread != null && thread.isAlive()) {
alert("注意", "脚本正在运行,请结束之前进程");
return;
}
thread = threads.start(function () {
start_app();
zCount = parseInt(ui.zCount.getText());
SRQuestion();
threads.shutDownAll();
console.hide();
engines.stopAll();
exit();
});
});
ui.zsy.click(function () {//争上游答题
auto.waitFor();//等待获取无障碍辅助权限
if (thread != null && thread.isAlive()) {
alert("注意", "脚本正在运行,请结束之前进程");
return;
}
thread = threads.start(function () {
start_app();
zCount = parseInt(ui.zCount.getText());
zsyQuestion();
threads.shutDownAll();
console.hide();
engines.stopAll();
exit();
});
});
ui.stop.click(function () {
if (thread != null && thread.isAlive()) {
threads.shutDownAll();
toast("停止运行!")
console.hide();
}
else {
toast("没有线程在运行!")
}
});
/*ui.update.click(function () {//在线更新题库
if (thread != null && thread.isAlive()) {
alert("注意!", "当前程序正在运行,请结束之前进程");
return;
}
confirm("确认更新在线题库吗?")
.then(c => {
if(c){
console.show();
thread = threads.start(function () {
try {
updateTikunet();
} catch (e) {
alert("在线更新题库出错!");
}
});
threads.shutDownAll();
console.hide();
engines.stopAll();
exit();
}
});
});*/
ui.about.click(function () {
alert("使用说明",
"AiQiangGuo Ver 2.19-2020.12.12 \n 〇程序需要 悬浮窗 和 无障碍权限(设置→辅助功能→无障碍→本 APP)\n 〇程序工作原理为模拟点击,基于Auto.js框架+JavaScript脚本执行 \n 〇程序不支持每周答题,专项答题,订阅。正常执行完毕42分(可执行前手动答题,答题完毕学习强国请返回主界面; 也可执行中手动辅助答题,以手动点击为准) \n 〇积分判断执行:读取今日积分确定需执行任务,任务精准,但部分手机可能不支持(积分获取正常推荐使用) \n 〇循序依次执行:预置每日积分所需执行任务数,不判断积分,依次执行所有任务(积分获取返回null或报错使用) \n ◎请确保进入学习强国时位于 主界面,模拟点击从主界面开始 \n ◎因存在文章误点击视频,多次重复点击同一文章视频问题,有概率造成循环执行,请手动补学 \n ◎安卓版本低于安卓7,无法执行收藏评论转发,文章界面模拟滑动 \n ◎测试机型:Redmi 6,Android 9,MiUI 11开发版 \n ★代码基于以下项目实现:Auto.js https://github.com/hyb1996/Auto.js \n LazyStudy https://github.com/lolisaikou/LazyStudy \n AutoLearnChina https://github.com/gzhjic/LearnChinaHelper \n XXQG-Helper https://github.com/ivanwhaf/xxqg-helper \n ●免责声明:本程序只供个人学习Auto.js使用,不得盈利传播,不得用于违法用途,否则造成的一切后果自负!"
)
});
function main() {
if (!judge_tiku_existence()) {//题库不存在则退出
return;
}
auto.waitFor();//等待获取无障碍辅助权限
start_app();//启动app
var start = new Date().getTime();//程序开始时间
if (customize_flag == true) {
//自定义学习,各项目执行顺序可换
localChannel1();//本地频道
zsyQuestion();//争上游答题
SRQuestion();//双人对战
challengeQuestion();//挑战答题
dailyQuestion();//每日答题
if (aZX == 1){
articleStudy1();//学习文章脚本1,包含点赞、分享和评论
}else{
articleStudy2();//学习文章脚本2,包含点赞、分享和评论
}
videoStudy_news();//看视频
}else {
getScores();//获取积分
while ( myScores["双人对战"] < 1 || myScores["争上游答题"] < 2 || myScores['本地频道'] != 1 || myScores['挑战答题'] != 6 || myScores['每日答题'] != 5 || myScores['视听学习'] != 6 || myScores['我要选读文章'] != 12 /*|| myScores['分享'] != 1 || myScores['发表观点'] != 1*/){
if (myScores['本地频道'] != 1) {
localChannel1();//本地频道
}
if (myScores["争上游答题"] < 2) {
zsyQuestion();//争上游答题
}
if (myScores["双人对战"] < 1) {
SRQuestion();//双人对战
}
if (myScores['挑战答题'] != 6) {
challengeQuestion();//挑战答题
}
if (myScores['每日答题'] != 5) {
dailyQuestion(); //每日答题
}
if (myScores['我要选读文章'] != 12) {
if (aZX == 1){
articleStudy1();//学习文章脚本1,包含点赞、分享和评论
}else{
articleStudy2();//学习文章脚本2,包含点赞、分享和评论
}
}
if (myScores['视听学习'] != 6){
videoStudy_news();//看视频
}
getScores();//再次获取积分,核对文章和视听时长,补学
continue;//break结束当前循环,continue继续执行当前循环
}
if (myScores['分享'] != 1 || myScores['发表观点'] != 1){
aCount = 2;//置文章数2,学习文章2,启动分享收藏评论2
articleStudy(); //收藏+分享 若c运行到此报错请注释本行!
}
if (myScores['视听学习时长'] != 6){
listenToRadio();//听电台广播补视听时长
}
}
var end = new Date().getTime();
console.log("运行结束,共耗时" + (parseInt(end - start)) / 1000 + "秒");
threads.shutDownAll();
console.hide();
engines.stopAll();
exit();
}
/** if (id("home_bottom_tab_button_work").exists()) {
id("home_bottom_tab_button_work").findOne().click();}
while (!id("home_bottom_tab_button_work").exists()) {//20201001 学习按钮文字属性由"学习"改为 "工作",以下所有点击学习按钮加载主页均同步修改
id("home_bottom_tab_button_work").findOne().click();
**/
/**
* @description: 启动app
* @param: null
* @return: null
*/
function start_app() {
console.setPosition(0, device.height / 2);//部分华为手机console有bug请注释本行
console.show();//部分华为手机console有bug请注释本行
console.log("启动学习强国");
if (!launchApp("学习强国")){//启动学习强国app
console.error("找不到学习强国App!");
return;
}
delay(3); //如果已清理强国app后台,默认打开主页;如果未清理后台,3秒应该可以拉起强国app
if (className("android.view.View").text("继续挑战").exists()){//双人对战 争上游结束页
back(); delay(1); }
if (className("android.view.View").text("开始对战").exists()){//双人对战开始页
back(); delay(1); }
if (className("android.widget.Button").text("退出").exists()){//双人对战退出房间
className("android.widget.Button").text("退出").findOne().click();
back(); delay(1); }
if (className("android.view.View").text("开始比赛").exists()){//争上游答题开始页
back(); delay(1); }
if (className("android.view.View").text("答题练习").exists()){//我要答题页
back(); delay(1); }
if (id("menu_contact").exists()){//强国通讯录
id("home_bottom_tab_button_work").findOne().click();
delay(1); }
if (id("more_text").exists()){//学习积分页
back(); delay(1); }
if (id("my_display_name").exists()){//我的主页
back(); delay(1); }
/*while (!id("home_bottom_tab_button_work").exists()){
back();delay(2);
continue;
} */ //适合内部返回主页,不适合已清理强国后台情况下初始拉起强国app
while (!id("home_bottom_tab_button_work").exists()) {//20201001 学习按钮文字属性由"学习"改为 "工作",以下所有点击学习按钮加载主页均同步修改
id("home_bottom_tab_button_work").findOne().click();//点击主页正下方的"学习"按钮
console.log("等待加载出主页");
delay(1);
continue;/*break;exists(); back();*/
}
delay(1);
}
/**
* @description: 定义延时函数
* @param: seconds-延迟秒数
* @return: null
*/
function delay(seconds) {
sleep(1000 * seconds);//sleep函数参数单位为毫秒所以乘1000
}
/**
* @description: 获取积分
* @param: null
* @return: null
*/
function getScores() {
while (!id("home_bottom_tab_button_work").exists());//等待加载出主页
id("home_bottom_tab_button_work").findOne().click();//点击主页正下方的"学习"按钮
delay(2);
console.log("正在获取积分...");
while (!text("积分明细").exists()) {//自主页点击右上角积分数字进入学习积分
if (id("comm_head_xuexi_score").exists()) {
id("comm_head_xuexi_score").findOnce().click();
} else if (text("积分").exists()) {
text("积分").findOnce().parent().child(1).click();
} else if (id("comm_head_xuexi_mine").exists()){//自强国通页面进入我的主页点击学习积分
id("comm_head_xuexi_mine").findOnce().click();
if (id("my_display_name").exists()){//我的主页
id("my_recycler_view").findOnce().child(0).click();
}
}
delay(3);
}
let err = false;
while (!err) {
try {
className("android.widget.ListView").findOnce().children().forEach(item => {
let name = item.child(0).child(0).text();
let str = item.child(2).text().split("/");
let score = str[0].match(/[0-9][0-9]*/g);
myScores[name] = score;
});
err = true;
} catch (e) {
console.log(e);
}
}
console.log(myScores);
aCount = 12 - myScores["我要选读文章"];
vCount = 6 - myScores["视听学习"];
rTime = (6 - myScores["视听学习时长"]) * 60;
console.log('剩余文章:' + aCount.toString() + '篇')
console.log('剩余视频:' + vCount.toString() + '个')
console.log('视听学习时长:' + rTime.toString() + '秒')
delay(1); back(); delay(1);
}
/**
* @description: 文章学习函数 (阅读文章+文章学习时长)---12分
* @param: null
* @return: null
*/
//文章学习函数之1 点击基于日期s=date_String或 "学习强国"平台
function articleStudy1() {
while (!id("home_bottom_tab_button_work").exists());//等待加载出主页
id("home_bottom_tab_button_work").findOne().click();//点击主页正下方的"学习"按钮
delay(2);
var aCatlog = aCat[num] ;//文章学习类别,随机取"推荐""要闻"、"新思想"
var date_string = getTodayDateString();//获取当天日期字符串
var s = date_string;
var listView = className("ListView");//获取文章ListView控件用于翻页
click(aCatlog);
delay(2);
var zt_flag = false;//判断进入专题界面标志
var fail = 0;//点击失败次数
console.log('文章类别:' + aCatlog + '关键词:'+ s)
for (var i = 0, t = 0; i < aCount;) {
if (click(s, t) == true)//如果点击成功则进入文章页面,不成功意味着本页已经到底,要翻页
{
let n = 0;
while (!textContains("欢迎发表你的观点").exists())//如果没有找到评论框则认为没有进入文章界面,一直等待
{
delay(1);
console.warn("正在等待加载文章界面...");
if (n > 3)//等待超过3秒则认为进入了专题界面,退出进下一篇文章
{
console.warn("没找到评论框!该界面非文章界面!");
zt_flag = true;
break;
}
n++;
}
if (textContains("央视网").exists() || textContains("广播").exists() || textContains("中央广播电视总台").exists() ||textContains("播放").exists() ||textContains("展开").exists() )//如果存在“央视网、中央广播电视总台、播放、展开”则认为进入了视频需退出。关键词测试
{
console.warn("进入视频界面,退出并进下一篇文章!");
t++;
back();
/* while (!id("home_bottom_tab_button_work").exists());
delay(0.5);
click("电台");
delay(1);
click("最近收听");
console.log("因广播被打断,重新收听广播...");
delay(1);
back();*/
while (!id("home_bottom_tab_button_work").exists());
id("home_bottom_tab_button_work").findOne().click();
delay(1);
num = random(0, commentText.length - 1) ; //重取随机数
aCatlog = aCat[num] ;
s = "“学习强国”学习平台";
console.log('文章类别:' + aCatlog + '关键词:'+ s)
click(aCatlog);
delay(1);
continue;
}
if (id("v_play").exists() || id("bg_play").exists())//进入电台页面2020.09.28
{
console.warn("进入电台界面,退出并进下一篇文章!");
t++;
if (id("btn_back").exists()){
id("btn_back").findOnce().click();//返回 2020.09.28需关闭电台收听
}else{
back; }//返回 2020.09.28需关闭电台收听
while (!id("home_bottom_tab_button_work").exists());
id("home_bottom_tab_button_work").findOne().click();
delay(1);
num = random(0, commentText.length - 1) ; //重取随机数
aCatlog = aCat[num] ;
s = "“学习强国”学习平台";
console.log('文章类别:' + aCatlog + '关键词:'+ s)
click(aCatlog);
delay(1);
continue;
}
if (zt_flag == true)//进入专题页标志
{
console.warn("进入了专题界面,退出并进下一篇文章!")
t++;
back();
delay(1);
zt_flag = false;
continue;
}
console.log("正在学习第" + (i + 1) + "篇文章...");
fail = 0;//失败次数清0
article_timing(i, aTime);
if (i < cCount)//收藏分享2篇文章
{
CollectAndShare(i);//收藏+分享 若运行到此报错请注释本行!
Comment(i);//评论
}
back();//返回主界面
while (!id("home_bottom_tab_button_work").exists());//等待加载出主页
delay(1);
i++;
t++;//t为实际点击的文章控件在当前布局中的标号,和i不同,勿改动!
} else {
if (id("v_play").exists() || id("bg_play").exists())//进入电台页面2020.09.28
{
console.warn("进入电台界面,退出并进下一篇文章!");
t++;
if (id("btn_back").exists()){
id("btn_back").findOnce().click();//返回 2020.09.28需关闭电台收听
}else{
back; }
while (!id("home_bottom_tab_button_work").exists());
id("home_bottom_tab_button_work").findOne().click();
delay(1);
num = random(0, commentText.length - 1) ; //重取随机数
aCatlog = aCat[num] ;
s = "“学习强国”学习平台";
console.log('文章类别:' + aCatlog + '关键词:'+ s)
click(aCatlog);
delay(1);
continue;
}
if (i == 0)//如果第一次点击就没点击成功则认为首页无当天文章
{
date_string = getYestardayDateString();
s = date_string;
/*s = "“学习强国”学习平台";*/
num = random(0, commentText.length - 1) ; //重取随机数
aCatlog = aCat[num] ;
click(aCatlog);
console.warn("首页没有找到当天文章,即将学习昨日新闻!"+aCatlog + s);
continue;
}
if (fail > 3)//连续翻几页没有点击成功则认为今天的新闻还没出来,学习昨天的
{
date_string = getYestardayDateString();
/*s = date_string;*/
s = "“学习强国”学习平台";
num = random(0, commentText.length - 1) ; //重取随机数
aCatlog = aCat[num] ;
click(aCatlog);
console.warn("没有找到当天文章,即将学习昨日新闻!"+aCatlog + s);
fail = 0;//失败次数清0
continue;
}
if (!textContains(s).exists())//当前页面当天新闻
{
fail++;//失败次数加一
}
listView.scrollForward();//向下滑动(翻页)
t = 0;
delay(1.5);
}
}
}
//文章学习函数之2 基于播报判断.因基于父子控件判断,点击基于日期s=date_String 感谢chongyadong
function articleStudy2() {
while (!id("home_bottom_tab_button_work").exists());//等待加载出主页
id("home_bottom_tab_button_work").findOne().click();//点击主页正下方的"学习"按钮
delay(2);
var aCatlog = aCat[num] ;//文章学习类别,随机取"推荐""要闻"、"新思想"
var date_string = getTodayDateString();//获取当天日期字符串
var s = date_string;
var listView = className("ListView");//获取文章ListView控件用于翻页
click(aCatlog);
delay(2);
var zt_flag = false;//判断进入专题界面标志
var currentNewsTitle = "";
var fail = 0; //点击失败次数
console.log('文章类别:' + aCatlog + '关键词:'+ s)
for (var i = 0, t = 0; i < aCount;) {
var art_obj = text(s).findOnce(t);
//console.info(art_obj);
if ((art_obj != null) && (art_obj.parent().childCount() == 4)) {
t++; //t为实际查找的文章控件在当前布局中的标号,和i不同,勿改动!
if ((art_obj.parent().child(3).text() == "播报") && (art_obj.parent().child(0).text() != currentNewsTitle)) //如果播报存在就进入文章正文
{
currentNewsTitle = art_obj.parent().child(0).text();
log(currentNewsTitle);
art_obj.parent().click();
delay(1);
let n = 0;
while (!textContains("欢迎发表你的观点").exists())//如果没有找到评论框则认为没有进入文章界面,一直等待
{
delay(1);
console.warn("正在等待加载文章界面...");
if (n > 3)//等待超过3秒则认为进入了专题界面,退出进下一篇文章
{
console.warn("没找到评论框!该界面非文章界面!");
zt_flag = true;
break;
}
n++;
}
if (textContains("央视网").exists() || textContains("广播").exists() || textContains("中央广播电视总台").exists() ||textContains("播放").exists() ||textContains("展开").exists() )//如果存在“央视网、中央广播电视总台、播放、展开”则认为进入了视频需退出。关键词测试
{
console.warn("进入视频界面,退出并进下一篇文章!");
t++;
back();
/*while (!id("home_bottom_tab_button_work").exists());
delay(0.5);
click("电台");
delay(1);
click("最近收听");
console.log("因广播被打断,重新收听广播...");
delay(1);
back();*/
while (!id("home_bottom_tab_button_work").exists());
id("home_bottom_tab_button_work").findOne().click();
delay(1);
num = random(0, commentText.length - 1) ; //重取随机数
aCatlog = aCat[num] ;
s = date_string;
/*s = "“学习强国”学习平台";*/
console.log('文章类别:' + aCatlog + '关键词:'+ s)
click(aCatlog);
delay(1);
continue;
}
if (id("v_play").exists() || id("bg_play").exists())//进入电台页面2020.09.28
{
console.warn("进入电台界面,退出并进下一篇文章!");
t++;
if (id("btn_back").exists()){
id("btn_back").findOnce().click();//返回 2020.09.28需关闭电台收听
}else{
back; }//返回 2020.09.28需关闭电台收听
while (!id("home_bottom_tab_button_work").exists());
id("home_bottom_tab_button_work").findOne().click();
delay(1);
num = random(0, commentText.length - 1) ; //重取随机数
aCatlog = aCat[num] ;
s = date_string;
/*s = "“学习强国”学习平台";*/
console.log('文章类别:' + aCatlog + '关键词:'+ s)
click(aCatlog);
delay(1);
continue;
}
if (zt_flag == true)//进入专题页标志
{
console.warn("进入了专题界面,退出并进下一篇文章!")
t++;
back();
delay(1);
zt_flag = false;
continue;
}
console.log("正在学习第" + (i + 1) + "篇文章...");
fail = 0; //失败次数清0
article_timing(i, aTime);
if (i < cCount)//收藏分享2篇文章
{
CollectAndShare(i);//收藏+分享 若c运行到此报错请注释本行!
Comment(i);//评论
}
back(); //返回主界面
while (!id("home_bottom_tab_button_work").exists());//等待加载出主页
delay(1);
i++;
}else{ //判断非目标文章
if (t > 2) {
listView.scrollForward(); //向下滑动(翻页
console.log("----------翻页------------");
t = 0;
delay(1.5);
}
}
}else{
if (fail > 3) //连续翻几页没有点击成功则认为今天的新闻还没出来,学习昨天的
{
date_string = getYestardayDateString();
s = date_string;
/*s = "“学习强国”学习平台";*/
num = random(0, commentText.length - 1) ; //重取随机数
aCatlog = aCat[num] ;
click(aCatlog);
console.warn("没有找到当天文章,即将学习昨日新闻!"+aCatlog + s);
fail = 0;//失败次数清0
continue;
}
if (!textContains(date_string).exists()) //当前页面当天新闻
{
fail++; //失败次数加一
}
listView.scrollForward(); //向下滑动(翻页
console.log("----------翻页------------");
t = 0;
delay(1.5);
}
}
}
/**
* @description: 文章学习计时(弹窗)函数
* @param: n-文章标号 seconds-学习秒数
* @return: null
*/
function article_timing(n, seconds) {
h = device.height;//屏幕高
w = device.width;//屏幕宽
x = (w / 3) * 2;
h1 = (h / 6) * 5;
h2 = (h / 6);
seconds = seconds + random(0,10);
for (var i = 0; i < seconds; i++) {
delay(1);
while (!textContains("欢迎发表你的观点").exists())//如果离开了文章界面则一直等待
{
console.error("当前已离开第" + (n + 1) + "文章界面,请重新返回文章页面...");
delay(2);
if(id("home_bottom_tab_button_work").exists()){
id("home_bottom_tab_button_work").findOne().click();
delay(1);
num = random(0, commentText.length - 1) ; //重取随机数
var date_string = getTodayDateString();
/*s = date_string;*/
s = "“学习强国”学习平台";
var aCatlog = aCat[num] ;
click(aCatlog);
console.log('文章类别:' + aCatlog + '关键词:'+ s)
delay(2);
click(s);
delay(2);
break;//break结束当前循环,continue继续执行当前循环,该命令导致手动进入文章无效 待修正
}
}
if (i % 5 == 0)
{
console.info("第" + (n + 1) + "篇文章已经学习" + (i + 1) + "秒,剩余" + (seconds - i - 1) + "秒!");
toast("防息屏弹窗,请无视");
if (i <= seconds / 2) {//每10秒滑动一次,如果android版本<7.0请将此滑动代码删除
swipe(x, h1, x, h2, 500);//向下滑动
} else {
swipe(x, h2, x, h1, 500);//向上滑动
}
}
}
}
/**
* @description:新闻联播小视频学习函数
* @param: null
* @return: null
*/
function videoStudy_news() {
while (!id("home_bottom_tab_button_work").exists());//等待加载出主页
id("home_bottom_tab_button_work").findOne().click();//点击主页正下方的"学习"按钮
delay(2);
click("电视台");
var vCatlog = vCat[num] ; //视频学习类别,随机取 "第一频道"、"学习视频"、"联播频道"
if (num == 0){
var s = "央视网";
}else if (num == 1){
var s = "央视新闻";
}else {
var s = "中央广播电视总台";
}
delay(1);
click(vCatlog);
delay(2);
var listView = className("ListView");//获取listView视频列表控件用于翻页
var fail = 0;//点击失败次数
delay(1);
console.log('视频类别:' + vCatlog + '关键词:'+ s )
for (var i = 0, t = 1; i < vCount;) {
if (click(s, t) == true) {
console.log("即将学习第" + (i + 1) + "个视频!");
fail = 0;//失败次数清0
video_timing_news(i, vTime);//学习每个新闻联播小片段
back();//返回联播频道界面
while (!id("home_bottom_tab_button_work").exists());//等待加载出主页
delay(1);
i++;
t++;
if (i == 3) {//如果是平板等设备,请尝试修改i为合适值!
listView.scrollForward();//翻页
delay(2);
t = 2;
}
}
else {
if (fail > 3)//连续翻几页没有点击成功则改换频道
{
num = random(0, commentText.length - 1) ; //重取随机数
vCatlog = vCat[num] ;
click(vCatlog);
delay(2);
if (num == 0){
var s = "央视网";
}else if (num == 1){
var s = "新华社";
}else {
var s = "中央广播电视总台";
}
delay(1);
console.warn("改换:"+ vCatlog + '关键词:'+ s);
fail = 0;//失败次数清0
continue;
}
if (!textContains(s).exists())//未找到关键词
{
fail++;//失败次数加一
}
listView.scrollForward();//翻页
delay(2);
t = 3;
}
}
}
/**
* @description: 新闻联播小视频学习计时(弹窗)函数
* @param: n-视频标号 seconds-学习秒数
* @return: null
*/
function video_timing_news(n, seconds) {
seconds = seconds + random(0,10);
for (var i = 0; i < seconds; i++) {
if (desc("继续播放")){
click("继续播放");
}
delay(1);
while (!textContains("欢迎发表你的观点").exists())//如果离开了联播小视频界面则一直等待
{
console.error("当前已离开第" + (n + 1) + "个新闻小视频界面,请重新返回视频");
delay(2);
while (!id("home_bottom_tab_button_work").exists());
id("home_bottom_tab_button_work").findOne().click();
delay(1);
click("电视台");
delay(1);
num = random(0, commentText.length - 1) ; //重取随机数
var vCatlog = vCat[num] ;
click(vCatlog);
delay(2);
if (num == 0){
var s = "央视网";
}else if (num == 1){
var s = "央视新闻";
}else {
var s = "中央电视广播总台";
}
console.warn("返回:"+ vCatlog + '关键词:'+ s);
click(s);
delay(2);
break;
}
if (i % 10 == 0)//每10秒打印一次学习情况
{
console.info("第" + (n + 1) + "个小视频已经观看" + (i + 1) + "秒,剩余" + (seconds - i - 1) + "秒!");
toast("防息屏弹窗,请无视");
}
}
}
/**
* @description: “百灵”小视频学习函数
* @param: vCount,vTime
* @return: null
*/
function videoStudy_bailing(vCount, vTime) {
h = device.height;//屏幕高
w = device.width;//屏幕宽
x = (w / 3) * 2;//横坐标2分之3处
h1 = (h / 6) * 5;//纵坐标6分之5处
h2 = (h / 6);//纵坐标6分之1处
while (!id("home_bottom_tab_button_work").exists());//等待加载出主页
id("home_bottom_tab_button_work").findOne().click();//点击主页正下方的"学习"按钮
delay(2);
click("百灵");
delay(2);
click("竖");
delay(2);
var a = className("FrameLayout").depth(23).findOnce(0);//根据控件搜索视频框,但部分手机不适配,改用下面坐标点击
a.click();
//click((w/2)+random()*10,h/4);//坐标点击第一个视频
delay(1);
for (var i = 0; i < vCount; i++) {
console.log("正在观看第" + (i + 1) + "个小视频");
video_timing_bailing(i, vTime);//观看每个小视频
if (i != vCount - 1) {
swipe(x, h1, x, h2, 500);//往下翻(纵坐标从5/6处滑到1/6处)
}
}
back();
delay(2);
}
/**
* @description: 百灵视频学习计时(弹窗)函数
* @param: n-视频标号 seconds-学习秒数
* @return: null
*/
function video_timing_bailing(n, seconds) {
seconds = seconds + random(0,10);
for (var i = 0; i < seconds; i++) {
if (desc("继续播放")){
click("继续播放");
}
while (!textContains("分享").exists())//如果离开了百灵小视频界面则一直等待
{
console.error("当前已离开第" + (n + 1) + "个小视频界面,请重新返回视频");
delay(2);
while (!id("home_bottom_tab_button_work").exists());
id("home_bottom_tab_button_work").findOne().click();
delay(1);
click("百灵");
delay(2);
click("竖");
delay(2);
a = className("FrameLayout").depth(23).findOnce(0);//根据控件搜索视频框,但部分手机不适配,改用下面坐标点击
a.click();
delay(2);
break;
}
delay(1);
if (i % 10 == 0)//每10秒打印一次学习情况
{
console.info("第" + (n + 1) + "个小视频已经观看" + (i + 1) + "秒,剩余" + (seconds - i - 1) + "秒!");
toast("防息屏弹窗,请无视");
}
}
}
/**
* @description: 听“电台”新闻广播函数 补视听时长
* @param: null
* @return: null
*/
function listenToRadio() {
var r_start = new Date().getTime();//广播开始时间
while (!id("home_bottom_tab_button_work").exists());//等待加载出主页
id("home_bottom_tab_button_work").findOne().click();//点击主页正下方的"学习"按钮