1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
<head>
|
5
|
<title>Test Report</title>
|
6
|
<meta name="generator" content="HTMLTestRunner 0.8.2"/>
|
7
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
8
|
|
9
|
<style type="text/css" media="screen">
|
10
|
body { font-family: verdana, arial, helvetica, sans-serif; font-size: 80%; }
|
11
|
table { font-size: 100%; }
|
12
|
pre { }
|
13
|
|
14
|
/* -- heading ---------------------------------------------------------------------- */
|
15
|
h1 {
|
16
|
font-size: 16pt;
|
17
|
color: gray;
|
18
|
}
|
19
|
.heading {
|
20
|
margin-top: 0ex;
|
21
|
margin-bottom: 1ex;
|
22
|
}
|
23
|
|
24
|
.heading .attribute {
|
25
|
margin-top: 1ex;
|
26
|
margin-bottom: 0;
|
27
|
}
|
28
|
|
29
|
.heading .description {
|
30
|
margin-top: 4ex;
|
31
|
margin-bottom: 6ex;
|
32
|
}
|
33
|
|
34
|
/* -- css div popup ------------------------------------------------------------------------ */
|
35
|
a.popup_link {
|
36
|
}
|
37
|
|
38
|
a.popup_link:hover {
|
39
|
color: red;
|
40
|
}
|
41
|
|
42
|
.popup_window {
|
43
|
display: none;
|
44
|
position: relative;
|
45
|
left: 0px;
|
46
|
top: 0px;
|
47
|
/*border: solid #627173 1px; */
|
48
|
padding: 10px;
|
49
|
background-color: #E6E6D6;
|
50
|
font-family: "Lucida Console", "Courier New", Courier, monospace;
|
51
|
text-align: left;
|
52
|
font-size: 8pt;
|
53
|
width: 500px;
|
54
|
}
|
55
|
|
56
|
}
|
57
|
/* -- report ------------------------------------------------------------------------ */
|
58
|
#show_detail_line {
|
59
|
margin-top: 3ex;
|
60
|
margin-bottom: 1ex;
|
61
|
}
|
62
|
#result_table {
|
63
|
width: 80%;
|
64
|
border-collapse: collapse;
|
65
|
border: 1px solid #777;
|
66
|
}
|
67
|
#header_row {
|
68
|
font-weight: bold;
|
69
|
color: white;
|
70
|
background-color: #777;
|
71
|
}
|
72
|
#result_table td {
|
73
|
border: 1px solid #777;
|
74
|
padding: 2px;
|
75
|
}
|
76
|
#total_row { font-weight: bold; }
|
77
|
.passClass { background-color: #6c6; }
|
78
|
.failClass { background-color: #c60; }
|
79
|
.errorClass { background-color: #c00; }
|
80
|
.passCase { color: #6c6; }
|
81
|
.failCase { color: #c60; font-weight: bold; }
|
82
|
.errorCase { color: #c00; font-weight: bold; }
|
83
|
.hiddenRow { display: none; }
|
84
|
.testcase { margin-left: 2em; }
|
85
|
|
86
|
|
87
|
/* -- ending ---------------------------------------------------------------------- */
|
88
|
#ending {
|
89
|
}
|
90
|
|
91
|
</style>
|
92
|
|
93
|
</head>
|
94
|
<body>
|
95
|
<script language="javascript" type="text/javascript">
|
96
|
output_list = Array();
|
97
|
|
98
|
|
99
|
function showCase(level) {
|
100
|
trs = document.getElementsByTagName("tr");
|
101
|
for (var i = 0; i < trs.length; i++) {
|
102
|
tr = trs[i];
|
103
|
id = tr.id;
|
104
|
if (id.substr(0,2) == 'ft') {
|
105
|
if (level < 1) {
|
106
|
tr.className = 'hiddenRow';
|
107
|
}
|
108
|
else {
|
109
|
tr.className = '';
|
110
|
}
|
111
|
}
|
112
|
if (id.substr(0,2) == 'pt') {
|
113
|
if (level > 1) {
|
114
|
tr.className = '';
|
115
|
}
|
116
|
else {
|
117
|
tr.className = 'hiddenRow';
|
118
|
}
|
119
|
}
|
120
|
}
|
121
|
}
|
122
|
|
123
|
|
124
|
function showClassDetail(cid, count) {
|
125
|
var id_list = Array(count);
|
126
|
var toHide = 1;
|
127
|
for (var i = 0; i < count; i++) {
|
128
|
tid0 = 't' + cid.substr(1) + '.' + (i+1);
|
129
|
tid = 'f' + tid0;
|
130
|
tr = document.getElementById(tid);
|
131
|
if (!tr) {
|
132
|
tid = 'p' + tid0;
|
133
|
tr = document.getElementById(tid);
|
134
|
}
|
135
|
id_list[i] = tid;
|
136
|
if (tr.className) {
|
137
|
toHide = 0;
|
138
|
}
|
139
|
}
|
140
|
for (var i = 0; i < count; i++) {
|
141
|
tid = id_list[i];
|
142
|
if (toHide) {
|
143
|
document.getElementById('div_'+tid).style.display = 'none'
|
144
|
document.getElementById(tid).className = 'hiddenRow';
|
145
|
}
|
146
|
else {
|
147
|
document.getElementById(tid).className = '';
|
148
|
}
|
149
|
}
|
150
|
}
|
151
|
|
152
|
|
153
|
function showTestDetail(div_id){
|
154
|
var details_div = document.getElementById(div_id)
|
155
|
var displayState = details_div.style.display
|
156
|
|
157
|
if (displayState != 'block' ) {
|
158
|
displayState = 'block'
|
159
|
details_div.style.display = 'block'
|
160
|
}
|
161
|
else {
|
162
|
details_div.style.display = 'none'
|
163
|
}
|
164
|
}
|
165
|
|
166
|
|
167
|
function html_escape(s) {
|
168
|
s = s.replace(/&/g,'&');
|
169
|
s = s.replace(/</g,'<');
|
170
|
s = s.replace(/>/g,'>');
|
171
|
return s;
|
172
|
}
|
173
|
|
174
|
|
175
|
|
176
|
|
177
|
|
178
|
|
179
|
|
180
|
|
181
|
|
182
|
|
183
|
|
184
|
|
185
|
|
186
|
|
187
|
|
188
|
</script>
|
189
|
|
190
|
<div class='heading'>
|
191
|
<h1>Test Report</h1>
|
192
|
<p class='attribute'><strong>Start Time:</strong> 2022-12-02 15:00:04</p>
|
193
|
<p class='attribute'><strong>Duration:</strong> 0:07:49.750307</p>
|
194
|
<p class='attribute'><strong>Status:</strong> Pass 49 Failure 1 Error 1</p>
|
195
|
|
196
|
<p class='description'>自动化测试 generated by HTMLTestRunner.</p>
|
197
|
</div>
|
198
|
|
199
|
|
200
|
|
201
|
<p id='show_detail_line'>Show
|
202
|
<a href='javascript:showCase(0)'>Summary</a>
|
203
|
<a href='javascript:showCase(1)'>Failed</a>
|
204
|
<a href='javascript:showCase(2)'>All</a>
|
205
|
</p>
|
206
|
<table id='result_table'>
|
207
|
<colgroup>
|
208
|
<col align='left' />
|
209
|
<col align='right' />
|
210
|
<col align='right' />
|
211
|
<col align='right' />
|
212
|
<col align='right' />
|
213
|
<col align='right' />
|
214
|
</colgroup>
|
215
|
<tr id='header_row'>
|
216
|
<td>Test Group/Test case</td>
|
217
|
<td>Count</td>
|
218
|
<td>Pass</td>
|
219
|
<td>Fail</td>
|
220
|
<td>Error</td>
|
221
|
<td>View</td>
|
222
|
</tr>
|
223
|
|
224
|
<tr class='errorClass'>
|
225
|
<td>test_smallwindow.Cases</td>
|
226
|
<td>51</td>
|
227
|
<td>49</td>
|
228
|
<td>1</td>
|
229
|
<td>1</td>
|
230
|
<td><a href="javascript:showClassDetail('c1',51)">Detail</a></td>
|
231
|
</tr>
|
232
|
|
233
|
<tr id='pt1.1' class='hiddenRow'>
|
234
|
<td class='none'><div class='testcase'>test_T01_ChoiceSmallWindow</div></td>
|
235
|
<td colspan='5' align='center'>pass</td>
|
236
|
</tr>
|
237
|
|
238
|
<tr id='pt1.2' class='hiddenRow'>
|
239
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_00: 不清空应用,反复进入小窗模式 [with *args=(0,)]</div></td>
|
240
|
<td colspan='5' align='center'>pass</td>
|
241
|
</tr>
|
242
|
|
243
|
<tr id='pt1.3' class='hiddenRow'>
|
244
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_01: 不清空应用,反复进入小窗模式 [with *args=(1,)]</div></td>
|
245
|
<td colspan='5' align='center'>pass</td>
|
246
|
</tr>
|
247
|
|
248
|
<tr id='ft1.4' class='none'>
|
249
|
<td class='errorCase'><div class='testcase'>test_T02_RepeatSmallWindow_02: 不清空应用,反复进入小窗模式 [with *args=(2,)]</div></td>
|
250
|
<td colspan='5' align='center'>
|
251
|
|
252
|
|
253
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft1.4')" >
|
254
|
error</a>
|
255
|
|
256
|
<div id='div_ft1.4' class="popup_window">
|
257
|
<div style='text-align: right; color:red;cursor:pointer'>
|
258
|
<a onfocus='this.blur();' onclick="document.getElementById('div_ft1.4').style.display = 'none' " >
|
259
|
[x]</a>
|
260
|
</div>
|
261
|
<pre>
|
262
|
|
263
|
ft1.4: Traceback (most recent call last):
|
264
|
File "D:\python\pycharmProject\lib\site-packages\parameterized\parameterized.py", line 533, in standalone_func
|
265
|
return func(*(a + p.args), **p.kwargs)
|
266
|
File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\testSuites\test_smallwindow.py", line 54, in test_T02_RepeatSmallWindow
|
267
|
App_Window_test.sw_RepeatStart_test(self, choice_num=num)
|
268
|
File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\modules\appwindow.py", line 266, in sw_RepeatStart_test
|
269
|
device(resourceId="android:id/move_window").click()
|
270
|
File "D:\python\pycharmProject\lib\site-packages\uiautomator2\_selector.py", line 150, in click
|
271
|
self.must_wait(timeout=timeout)
|
272
|
File "D:\python\pycharmProject\lib\site-packages\uiautomator2\_selector.py", line 345, in must_wait
|
273
|
raise UiObjectNotFoundError({'code': -32002, 'data': str(self.selector), 'method': 'wait'})
|
274
|
uiautomator2.exceptions.UiObjectNotFoundError: -32002 Client error: <> data: Selector [resourceId='android:id/move_window'], method: None
|
275
|
|
276
|
|
277
|
</pre>
|
278
|
</div>
|
279
|
|
280
|
|
281
|
</td>
|
282
|
</tr>
|
283
|
|
284
|
<tr id='ft1.5' class='none'>
|
285
|
<td class='failCase'><div class='testcase'>test_T02_RepeatSmallWindow_03: 不清空应用,反复进入小窗模式 [with *args=(3,)]</div></td>
|
286
|
<td colspan='5' align='center'>
|
287
|
|
288
|
|
289
|
<a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft1.5')" >
|
290
|
fail</a>
|
291
|
|
292
|
<div id='div_ft1.5' class="popup_window">
|
293
|
<div style='text-align: right; color:red;cursor:pointer'>
|
294
|
<a onfocus='this.blur();' onclick="document.getElementById('div_ft1.5').style.display = 'none' " >
|
295
|
[x]</a>
|
296
|
</div>
|
297
|
<pre>
|
298
|
|
299
|
ft1.5: Traceback (most recent call last):
|
300
|
File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\modules\appwindow.py", line 222, in sw_RepeatStart_test
|
301
|
device(resourceId="com.android.launcher3:id/name_tv", text="日历").click()
|
302
|
File "D:\python\pycharmProject\lib\site-packages\uiautomator2\_selector.py", line 150, in click
|
303
|
self.must_wait(timeout=timeout)
|
304
|
File "D:\python\pycharmProject\lib\site-packages\uiautomator2\_selector.py", line 345, in must_wait
|
305
|
raise UiObjectNotFoundError({'code': -32002, 'data': str(self.selector), 'method': 'wait'})
|
306
|
uiautomator2.exceptions.UiObjectNotFoundError: -32002 Client error: <> data: Selector [resourceId='com.android.launcher3:id/name_tv', text='日历'], method: None
|
307
|
|
308
|
During handling of the above exception, another exception occurred:
|
309
|
|
310
|
Traceback (most recent call last):
|
311
|
File "D:\python\pycharmProject\lib\site-packages\parameterized\parameterized.py", line 533, in standalone_func
|
312
|
return func(*(a + p.args), **p.kwargs)
|
313
|
File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\testSuites\test_smallwindow.py", line 54, in test_T02_RepeatSmallWindow
|
314
|
App_Window_test.sw_RepeatStart_test(self, choice_num=num)
|
315
|
File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\modules\appwindow.py", line 263, in sw_RepeatStart_test
|
316
|
Failed.failed_test(self, error_info)
|
317
|
File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\framework\fail.py", line 29, in failed_test
|
318
|
self.assertTrue(flag, msg=error_info)
|
319
|
AssertionError: False is not true
|
320
|
|
321
|
|
322
|
</pre>
|
323
|
</div>
|
324
|
|
325
|
|
326
|
</td>
|
327
|
</tr>
|
328
|
|
329
|
<tr id='pt1.6' class='hiddenRow'>
|
330
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_04: 不清空应用,反复进入小窗模式 [with *args=(4,)]</div></td>
|
331
|
<td colspan='5' align='center'>pass</td>
|
332
|
</tr>
|
333
|
|
334
|
<tr id='pt1.7' class='hiddenRow'>
|
335
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_05: 不清空应用,反复进入小窗模式 [with *args=(5,)]</div></td>
|
336
|
<td colspan='5' align='center'>pass</td>
|
337
|
</tr>
|
338
|
|
339
|
<tr id='pt1.8' class='hiddenRow'>
|
340
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_06: 不清空应用,反复进入小窗模式 [with *args=(6,)]</div></td>
|
341
|
<td colspan='5' align='center'>pass</td>
|
342
|
</tr>
|
343
|
|
344
|
<tr id='pt1.9' class='hiddenRow'>
|
345
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_07: 不清空应用,反复进入小窗模式 [with *args=(7,)]</div></td>
|
346
|
<td colspan='5' align='center'>pass</td>
|
347
|
</tr>
|
348
|
|
349
|
<tr id='pt1.10' class='hiddenRow'>
|
350
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_08: 不清空应用,反复进入小窗模式 [with *args=(8,)]</div></td>
|
351
|
<td colspan='5' align='center'>pass</td>
|
352
|
</tr>
|
353
|
|
354
|
<tr id='pt1.11' class='hiddenRow'>
|
355
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_09: 不清空应用,反复进入小窗模式 [with *args=(9,)]</div></td>
|
356
|
<td colspan='5' align='center'>pass</td>
|
357
|
</tr>
|
358
|
|
359
|
<tr id='pt1.12' class='hiddenRow'>
|
360
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_10: 不清空应用,反复进入小窗模式 [with *args=(10,)]</div></td>
|
361
|
<td colspan='5' align='center'>pass</td>
|
362
|
</tr>
|
363
|
|
364
|
<tr id='pt1.13' class='hiddenRow'>
|
365
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_11: 不清空应用,反复进入小窗模式 [with *args=(11,)]</div></td>
|
366
|
<td colspan='5' align='center'>pass</td>
|
367
|
</tr>
|
368
|
|
369
|
<tr id='pt1.14' class='hiddenRow'>
|
370
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_12: 不清空应用,反复进入小窗模式 [with *args=(12,)]</div></td>
|
371
|
<td colspan='5' align='center'>pass</td>
|
372
|
</tr>
|
373
|
|
374
|
<tr id='pt1.15' class='hiddenRow'>
|
375
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_13: 不清空应用,反复进入小窗模式 [with *args=(13,)]</div></td>
|
376
|
<td colspan='5' align='center'>pass</td>
|
377
|
</tr>
|
378
|
|
379
|
<tr id='pt1.16' class='hiddenRow'>
|
380
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_14: 不清空应用,反复进入小窗模式 [with *args=(14,)]</div></td>
|
381
|
<td colspan='5' align='center'>pass</td>
|
382
|
</tr>
|
383
|
|
384
|
<tr id='pt1.17' class='hiddenRow'>
|
385
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_15: 不清空应用,反复进入小窗模式 [with *args=(15,)]</div></td>
|
386
|
<td colspan='5' align='center'>pass</td>
|
387
|
</tr>
|
388
|
|
389
|
<tr id='pt1.18' class='hiddenRow'>
|
390
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_16: 不清空应用,反复进入小窗模式 [with *args=(16,)]</div></td>
|
391
|
<td colspan='5' align='center'>pass</td>
|
392
|
</tr>
|
393
|
|
394
|
<tr id='pt1.19' class='hiddenRow'>
|
395
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_17: 不清空应用,反复进入小窗模式 [with *args=(17,)]</div></td>
|
396
|
<td colspan='5' align='center'>pass</td>
|
397
|
</tr>
|
398
|
|
399
|
<tr id='pt1.20' class='hiddenRow'>
|
400
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_18: 不清空应用,反复进入小窗模式 [with *args=(18,)]</div></td>
|
401
|
<td colspan='5' align='center'>pass</td>
|
402
|
</tr>
|
403
|
|
404
|
<tr id='pt1.21' class='hiddenRow'>
|
405
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_19: 不清空应用,反复进入小窗模式 [with *args=(19,)]</div></td>
|
406
|
<td colspan='5' align='center'>pass</td>
|
407
|
</tr>
|
408
|
|
409
|
<tr id='pt1.22' class='hiddenRow'>
|
410
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_20: 不清空应用,反复进入小窗模式 [with *args=(20,)]</div></td>
|
411
|
<td colspan='5' align='center'>pass</td>
|
412
|
</tr>
|
413
|
|
414
|
<tr id='pt1.23' class='hiddenRow'>
|
415
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_21: 不清空应用,反复进入小窗模式 [with *args=(21,)]</div></td>
|
416
|
<td colspan='5' align='center'>pass</td>
|
417
|
</tr>
|
418
|
|
419
|
<tr id='pt1.24' class='hiddenRow'>
|
420
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_22: 不清空应用,反复进入小窗模式 [with *args=(22,)]</div></td>
|
421
|
<td colspan='5' align='center'>pass</td>
|
422
|
</tr>
|
423
|
|
424
|
<tr id='pt1.25' class='hiddenRow'>
|
425
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_23: 不清空应用,反复进入小窗模式 [with *args=(23,)]</div></td>
|
426
|
<td colspan='5' align='center'>pass</td>
|
427
|
</tr>
|
428
|
|
429
|
<tr id='pt1.26' class='hiddenRow'>
|
430
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_24: 不清空应用,反复进入小窗模式 [with *args=(24,)]</div></td>
|
431
|
<td colspan='5' align='center'>pass</td>
|
432
|
</tr>
|
433
|
|
434
|
<tr id='pt1.27' class='hiddenRow'>
|
435
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_25: 不清空应用,反复进入小窗模式 [with *args=(25,)]</div></td>
|
436
|
<td colspan='5' align='center'>pass</td>
|
437
|
</tr>
|
438
|
|
439
|
<tr id='pt1.28' class='hiddenRow'>
|
440
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_26: 不清空应用,反复进入小窗模式 [with *args=(26,)]</div></td>
|
441
|
<td colspan='5' align='center'>pass</td>
|
442
|
</tr>
|
443
|
|
444
|
<tr id='pt1.29' class='hiddenRow'>
|
445
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_27: 不清空应用,反复进入小窗模式 [with *args=(27,)]</div></td>
|
446
|
<td colspan='5' align='center'>pass</td>
|
447
|
</tr>
|
448
|
|
449
|
<tr id='pt1.30' class='hiddenRow'>
|
450
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_28: 不清空应用,反复进入小窗模式 [with *args=(28,)]</div></td>
|
451
|
<td colspan='5' align='center'>pass</td>
|
452
|
</tr>
|
453
|
|
454
|
<tr id='pt1.31' class='hiddenRow'>
|
455
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_29: 不清空应用,反复进入小窗模式 [with *args=(29,)]</div></td>
|
456
|
<td colspan='5' align='center'>pass</td>
|
457
|
</tr>
|
458
|
|
459
|
<tr id='pt1.32' class='hiddenRow'>
|
460
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_30: 不清空应用,反复进入小窗模式 [with *args=(30,)]</div></td>
|
461
|
<td colspan='5' align='center'>pass</td>
|
462
|
</tr>
|
463
|
|
464
|
<tr id='pt1.33' class='hiddenRow'>
|
465
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_31: 不清空应用,反复进入小窗模式 [with *args=(31,)]</div></td>
|
466
|
<td colspan='5' align='center'>pass</td>
|
467
|
</tr>
|
468
|
|
469
|
<tr id='pt1.34' class='hiddenRow'>
|
470
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_32: 不清空应用,反复进入小窗模式 [with *args=(32,)]</div></td>
|
471
|
<td colspan='5' align='center'>pass</td>
|
472
|
</tr>
|
473
|
|
474
|
<tr id='pt1.35' class='hiddenRow'>
|
475
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_33: 不清空应用,反复进入小窗模式 [with *args=(33,)]</div></td>
|
476
|
<td colspan='5' align='center'>pass</td>
|
477
|
</tr>
|
478
|
|
479
|
<tr id='pt1.36' class='hiddenRow'>
|
480
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_34: 不清空应用,反复进入小窗模式 [with *args=(34,)]</div></td>
|
481
|
<td colspan='5' align='center'>pass</td>
|
482
|
</tr>
|
483
|
|
484
|
<tr id='pt1.37' class='hiddenRow'>
|
485
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_35: 不清空应用,反复进入小窗模式 [with *args=(35,)]</div></td>
|
486
|
<td colspan='5' align='center'>pass</td>
|
487
|
</tr>
|
488
|
|
489
|
<tr id='pt1.38' class='hiddenRow'>
|
490
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_36: 不清空应用,反复进入小窗模式 [with *args=(36,)]</div></td>
|
491
|
<td colspan='5' align='center'>pass</td>
|
492
|
</tr>
|
493
|
|
494
|
<tr id='pt1.39' class='hiddenRow'>
|
495
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_37: 不清空应用,反复进入小窗模式 [with *args=(37,)]</div></td>
|
496
|
<td colspan='5' align='center'>pass</td>
|
497
|
</tr>
|
498
|
|
499
|
<tr id='pt1.40' class='hiddenRow'>
|
500
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_38: 不清空应用,反复进入小窗模式 [with *args=(38,)]</div></td>
|
501
|
<td colspan='5' align='center'>pass</td>
|
502
|
</tr>
|
503
|
|
504
|
<tr id='pt1.41' class='hiddenRow'>
|
505
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_39: 不清空应用,反复进入小窗模式 [with *args=(39,)]</div></td>
|
506
|
<td colspan='5' align='center'>pass</td>
|
507
|
</tr>
|
508
|
|
509
|
<tr id='pt1.42' class='hiddenRow'>
|
510
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_40: 不清空应用,反复进入小窗模式 [with *args=(40,)]</div></td>
|
511
|
<td colspan='5' align='center'>pass</td>
|
512
|
</tr>
|
513
|
|
514
|
<tr id='pt1.43' class='hiddenRow'>
|
515
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_41: 不清空应用,反复进入小窗模式 [with *args=(41,)]</div></td>
|
516
|
<td colspan='5' align='center'>pass</td>
|
517
|
</tr>
|
518
|
|
519
|
<tr id='pt1.44' class='hiddenRow'>
|
520
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_42: 不清空应用,反复进入小窗模式 [with *args=(42,)]</div></td>
|
521
|
<td colspan='5' align='center'>pass</td>
|
522
|
</tr>
|
523
|
|
524
|
<tr id='pt1.45' class='hiddenRow'>
|
525
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_43: 不清空应用,反复进入小窗模式 [with *args=(43,)]</div></td>
|
526
|
<td colspan='5' align='center'>pass</td>
|
527
|
</tr>
|
528
|
|
529
|
<tr id='pt1.46' class='hiddenRow'>
|
530
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_44: 不清空应用,反复进入小窗模式 [with *args=(44,)]</div></td>
|
531
|
<td colspan='5' align='center'>pass</td>
|
532
|
</tr>
|
533
|
|
534
|
<tr id='pt1.47' class='hiddenRow'>
|
535
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_45: 不清空应用,反复进入小窗模式 [with *args=(45,)]</div></td>
|
536
|
<td colspan='5' align='center'>pass</td>
|
537
|
</tr>
|
538
|
|
539
|
<tr id='pt1.48' class='hiddenRow'>
|
540
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_46: 不清空应用,反复进入小窗模式 [with *args=(46,)]</div></td>
|
541
|
<td colspan='5' align='center'>pass</td>
|
542
|
</tr>
|
543
|
|
544
|
<tr id='pt1.49' class='hiddenRow'>
|
545
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_47: 不清空应用,反复进入小窗模式 [with *args=(47,)]</div></td>
|
546
|
<td colspan='5' align='center'>pass</td>
|
547
|
</tr>
|
548
|
|
549
|
<tr id='pt1.50' class='hiddenRow'>
|
550
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_48: 不清空应用,反复进入小窗模式 [with *args=(48,)]</div></td>
|
551
|
<td colspan='5' align='center'>pass</td>
|
552
|
</tr>
|
553
|
|
554
|
<tr id='pt1.51' class='hiddenRow'>
|
555
|
<td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_49: 不清空应用,反复进入小窗模式 [with *args=(49,)]</div></td>
|
556
|
<td colspan='5' align='center'>pass</td>
|
557
|
</tr>
|
558
|
|
559
|
<tr id='total_row'>
|
560
|
<td>Total</td>
|
561
|
<td>51</td>
|
562
|
<td>49</td>
|
563
|
<td>1</td>
|
564
|
<td>1</td>
|
565
|
<td> </td>
|
566
|
</tr>
|
567
|
</table>
|
568
|
|
569
|
<div id='ending'> </div>
|
570
|
|
571
|
</body>
|
572
|
</html>
|