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
// uni-app自动化测试教程: uni-app自动化测试教程: https://uniapp.dcloud.net.cn/worktile/auto/hbuilderx-extension/
describe('component-native-web-view', () => {
if (!process.env.uniTestPlatformInfo.startsWith('web') && !process.env.UNI_AUTOMATOR_APP_WEBVIEW) {
let page;
let start = 0;
beforeAll(async () => {
page = await program.reLaunch('/pages/component/web-view/web-view');
await page.waitFor(3000);
});
it('check_load_url', async () => {
expect(await page.data('loadError')).toBe(false)
});
it('test attr webview-styles', async () => {
await page.setData({
webview_styles: {
progress: {
color: '#FF0'
}
}
});
await page.waitFor(100);
await page.callMethod('reload');
await page.waitFor(100);
await page.setData({
webview_styles: {
progress: {
color: 'yellow'
}
}
});
await page.waitFor(100);
await page.callMethod('reload');
});
it('test touch event', async () => {
await page.setData({
autoTest: true
});
const info = await page.callMethod('getWindowInfo');
await program.tap({
x: 1,
y: (info.statusBarHeight + 44) * info.pixelRatio + 1
});
start = Date.now();
await page.waitFor(async () => {
return (await page.data('eventTouchstart')) && (await page.data('eventTap')) || (Date.now() - start > 500);
});
expect(await page.data('eventTouchstart')).toEqual({
clientX: 1,
clientY: 1
});
expect(await page.data('eventTap')).toEqual({
clientX: 1,
clientY: 1
});
await page.setData({
pointerEvents: 'none'
});
await page.waitFor(100);
await program.tap({
x: 10,
y: (info.statusBarHeight + 44) * info.pixelRatio + 10
});
start = Date.now();
await page.waitFor(async () => {
return (await page.data('eventTouchstart')) && (await page.data('eventTap')) || (Date.now() - start > 500);
});
expect(await page.data('eventTouchstart')).toEqual({
clientX: 1,
clientY: 1
});
expect(await page.data('eventTap')).toEqual({
clientX: 1,
clientY: 1
});
await page.setData({
pointerEvents: 'auto'
});
});
it('test event loading load', async () => {
await page.callMethod('reload');
start = Date.now();
await page.waitFor(async () => {
return (await page.data('eventLoading')) || (Date.now() - start > 500);
});
if(process.env.uniTestPlatformInfo.toLowerCase().startsWith('ios')) {
expect(await page.data('eventLoading')).toEqual({
type: 'loading',
src: 'https://www.dcloud.io/'
});
}else {
expect(await page.data('eventLoading')).toEqual({
tagName: 'WEB-VIEW',
type: 'loading',
src: 'https://www.dcloud.io/'
});
}
start = Date.now();
await page.waitFor(async () => {
return (await page.data('eventLoad')) || (Date.now() - start > 5000);
});
if(process.env.uniTestPlatformInfo.toLowerCase().startsWith('ios')) {
expect(await page.data('eventLoad')).toEqual({
type: 'load',
src: 'https://www.dcloud.io/'
});
}else {
expect(await page.data('eventLoad')).toEqual({
tagName: 'WEB-VIEW',
type: 'load',
src: 'https://www.dcloud.io/'
});
}
});
it('test event error', async () => {
const infos = process.env.uniTestPlatformInfo.split(' ');
const version = parseInt(infos[infos.length - 1]);
if (process.env.uniTestPlatformInfo.startsWith('android') && version > 5) {
await page.setData({
src: 'https://www.dclou.io/uni-app-x'
});
start = Date.now();
await page.waitFor(async () => {
return (await page.data('eventError')) || (Date.now() - start > 5000);
});
expect(await page.data('eventError')).toEqual({
tagName: 'WEB-VIEW',
type: 'error',
errCode: 100002,
errMsg: 'page error',
url: 'https://www.dclou.io',
fullUrl: 'https://www.dclou.io/uni-app-x',
src: 'https://www.dclou.io/uni-app-x'
});
}
await page.setData({
autoTest: false
});
});
it('checkNativeWebView', () => {
await page.waitFor(300);
const has = await page.data('checkNativeWebView')
expect(has).toBe(true)
})
} else {
// TODO: web 端暂不支持
it('web', async () => {
expect(1).toBe(1)
})
}
});