-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtest.js
56 lines (39 loc) · 1.37 KB
/
test.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
// log(id('root_layout').findOne());
// log(descContains('更多').find());
// let tag = scrollable(true).find();
// tag.scrollForward();
// log(desc('更多').find());
// log(textContains('北京交个朋友').findOne().parent().findOne(textMatches(/[\s\S]+/)));
// let tags = id('cy').scrollable(true).find();
// for (let i in tags) {
// log(tags[i]);
// tags[i].scrollForward();
// sleep(3000);
// }
// log('完成');
// tag = id('cy').filter(v => {
// return v && v.bounds() && v.bounds().left >= 0 && v.bounds().top >= 0 && v.bounds().width() >= device.width && v.bounds().height() >= device.height;
// }).findOne();
// log(tag);
// tag.scrollForward();
// let tags = scrollable(true).find();
// for (let i in tags) {
// if (i == 0) {
// continue;
// }
// log(tags[i]);
// tags[i].scrollForward();
// sleep(3000);
// }
// log('完成');
// log(id('eu=').findOne());
// log(id('ebl').find());
// let a = desc('更多').findOne();
// log(a.parent());//ut7
// log(a.parent().parent());//r9+
// click(id('r9+').findOne().bounds().centerX(), id('r9+').findOne().bounds().centerY());
// click(id('ut7').findOne().bounds().centerX(), id('ut7').findOne().bounds().centerY());
// log(descContains('搜索').findOne());
// log(textContains('搜索').findOne());
// log(id('1l8').textContains('搜索').findOne());
log(descContains('8').findOne());