221202151206HtmlTest.html

图库 - CD TEST-方永红, 2022-12-02 16:33

Download (21.3 KB)

 
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
/* level - 0:Summary; 1:Failed; 2:All */
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
    // alert(displayState)
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,'&amp;');
169
    s = s.replace(/</g,'&lt;');
170
    s = s.replace(/>/g,'&gt;');
171
    return s;
172
}
173

174
/* obsoleted by detail in <div>
175
function showOutput(id, name) {
176
    var w = window.open("", //url
177
                    name,
178
                    "resizable,scrollbars,status,width=800,height=450");
179
    d = w.document;
180
    d.write("<pre>");
181
    d.write(html_escape(output_list[id]));
182
    d.write("\n");
183
    d.write("<a href='javascript:window.close()'>close</a>\n");
184
    d.write("</pre>\n");
185
    d.close();
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:12:06</p>
193
<p class='attribute'><strong>Duration:</strong> 0:05:19.432460</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='pt1.4' class='hiddenRow'>
249
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_02: 不清空应用,反复进入小窗模式 [with *args=(2,)]</div></td>
250
    <td colspan='5' align='center'>pass</td>
251
</tr>
252

    
253
<tr id='pt1.5' class='hiddenRow'>
254
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_03: 不清空应用,反复进入小窗模式 [with *args=(3,)]</div></td>
255
    <td colspan='5' align='center'>pass</td>
256
</tr>
257

    
258
<tr id='pt1.6' class='hiddenRow'>
259
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_04: 不清空应用,反复进入小窗模式 [with *args=(4,)]</div></td>
260
    <td colspan='5' align='center'>pass</td>
261
</tr>
262

    
263
<tr id='pt1.7' class='hiddenRow'>
264
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_05: 不清空应用,反复进入小窗模式 [with *args=(5,)]</div></td>
265
    <td colspan='5' align='center'>pass</td>
266
</tr>
267

    
268
<tr id='pt1.8' class='hiddenRow'>
269
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_06: 不清空应用,反复进入小窗模式 [with *args=(6,)]</div></td>
270
    <td colspan='5' align='center'>pass</td>
271
</tr>
272

    
273
<tr id='pt1.9' class='hiddenRow'>
274
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_07: 不清空应用,反复进入小窗模式 [with *args=(7,)]</div></td>
275
    <td colspan='5' align='center'>pass</td>
276
</tr>
277

    
278
<tr id='pt1.10' class='hiddenRow'>
279
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_08: 不清空应用,反复进入小窗模式 [with *args=(8,)]</div></td>
280
    <td colspan='5' align='center'>pass</td>
281
</tr>
282

    
283
<tr id='pt1.11' class='hiddenRow'>
284
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_09: 不清空应用,反复进入小窗模式 [with *args=(9,)]</div></td>
285
    <td colspan='5' align='center'>pass</td>
286
</tr>
287

    
288
<tr id='pt1.12' class='hiddenRow'>
289
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_10: 不清空应用,反复进入小窗模式 [with *args=(10,)]</div></td>
290
    <td colspan='5' align='center'>pass</td>
291
</tr>
292

    
293
<tr id='pt1.13' class='hiddenRow'>
294
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_11: 不清空应用,反复进入小窗模式 [with *args=(11,)]</div></td>
295
    <td colspan='5' align='center'>pass</td>
296
</tr>
297

    
298
<tr id='pt1.14' class='hiddenRow'>
299
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_12: 不清空应用,反复进入小窗模式 [with *args=(12,)]</div></td>
300
    <td colspan='5' align='center'>pass</td>
301
</tr>
302

    
303
<tr id='pt1.15' class='hiddenRow'>
304
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_13: 不清空应用,反复进入小窗模式 [with *args=(13,)]</div></td>
305
    <td colspan='5' align='center'>pass</td>
306
</tr>
307

    
308
<tr id='pt1.16' class='hiddenRow'>
309
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_14: 不清空应用,反复进入小窗模式 [with *args=(14,)]</div></td>
310
    <td colspan='5' align='center'>pass</td>
311
</tr>
312

    
313
<tr id='pt1.17' class='hiddenRow'>
314
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_15: 不清空应用,反复进入小窗模式 [with *args=(15,)]</div></td>
315
    <td colspan='5' align='center'>pass</td>
316
</tr>
317

    
318
<tr id='pt1.18' class='hiddenRow'>
319
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_16: 不清空应用,反复进入小窗模式 [with *args=(16,)]</div></td>
320
    <td colspan='5' align='center'>pass</td>
321
</tr>
322

    
323
<tr id='pt1.19' class='hiddenRow'>
324
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_17: 不清空应用,反复进入小窗模式 [with *args=(17,)]</div></td>
325
    <td colspan='5' align='center'>pass</td>
326
</tr>
327

    
328
<tr id='pt1.20' class='hiddenRow'>
329
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_18: 不清空应用,反复进入小窗模式 [with *args=(18,)]</div></td>
330
    <td colspan='5' align='center'>pass</td>
331
</tr>
332

    
333
<tr id='pt1.21' class='hiddenRow'>
334
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_19: 不清空应用,反复进入小窗模式 [with *args=(19,)]</div></td>
335
    <td colspan='5' align='center'>pass</td>
336
</tr>
337

    
338
<tr id='pt1.22' class='hiddenRow'>
339
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_20: 不清空应用,反复进入小窗模式 [with *args=(20,)]</div></td>
340
    <td colspan='5' align='center'>pass</td>
341
</tr>
342

    
343
<tr id='pt1.23' class='hiddenRow'>
344
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_21: 不清空应用,反复进入小窗模式 [with *args=(21,)]</div></td>
345
    <td colspan='5' align='center'>pass</td>
346
</tr>
347

    
348
<tr id='pt1.24' class='hiddenRow'>
349
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_22: 不清空应用,反复进入小窗模式 [with *args=(22,)]</div></td>
350
    <td colspan='5' align='center'>pass</td>
351
</tr>
352

    
353
<tr id='pt1.25' class='hiddenRow'>
354
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_23: 不清空应用,反复进入小窗模式 [with *args=(23,)]</div></td>
355
    <td colspan='5' align='center'>pass</td>
356
</tr>
357

    
358
<tr id='pt1.26' class='hiddenRow'>
359
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_24: 不清空应用,反复进入小窗模式 [with *args=(24,)]</div></td>
360
    <td colspan='5' align='center'>pass</td>
361
</tr>
362

    
363
<tr id='pt1.27' class='hiddenRow'>
364
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_25: 不清空应用,反复进入小窗模式 [with *args=(25,)]</div></td>
365
    <td colspan='5' align='center'>pass</td>
366
</tr>
367

    
368
<tr id='pt1.28' class='hiddenRow'>
369
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_26: 不清空应用,反复进入小窗模式 [with *args=(26,)]</div></td>
370
    <td colspan='5' align='center'>pass</td>
371
</tr>
372

    
373
<tr id='pt1.29' class='hiddenRow'>
374
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_27: 不清空应用,反复进入小窗模式 [with *args=(27,)]</div></td>
375
    <td colspan='5' align='center'>pass</td>
376
</tr>
377

    
378
<tr id='pt1.30' class='hiddenRow'>
379
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_28: 不清空应用,反复进入小窗模式 [with *args=(28,)]</div></td>
380
    <td colspan='5' align='center'>pass</td>
381
</tr>
382

    
383
<tr id='pt1.31' class='hiddenRow'>
384
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_29: 不清空应用,反复进入小窗模式 [with *args=(29,)]</div></td>
385
    <td colspan='5' align='center'>pass</td>
386
</tr>
387

    
388
<tr id='pt1.32' class='hiddenRow'>
389
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_30: 不清空应用,反复进入小窗模式 [with *args=(30,)]</div></td>
390
    <td colspan='5' align='center'>pass</td>
391
</tr>
392

    
393
<tr id='pt1.33' class='hiddenRow'>
394
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_31: 不清空应用,反复进入小窗模式 [with *args=(31,)]</div></td>
395
    <td colspan='5' align='center'>pass</td>
396
</tr>
397

    
398
<tr id='pt1.34' class='hiddenRow'>
399
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_32: 不清空应用,反复进入小窗模式 [with *args=(32,)]</div></td>
400
    <td colspan='5' align='center'>pass</td>
401
</tr>
402

    
403
<tr id='pt1.35' class='hiddenRow'>
404
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_33: 不清空应用,反复进入小窗模式 [with *args=(33,)]</div></td>
405
    <td colspan='5' align='center'>pass</td>
406
</tr>
407

    
408
<tr id='pt1.36' class='hiddenRow'>
409
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_34: 不清空应用,反复进入小窗模式 [with *args=(34,)]</div></td>
410
    <td colspan='5' align='center'>pass</td>
411
</tr>
412

    
413
<tr id='pt1.37' class='hiddenRow'>
414
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_35: 不清空应用,反复进入小窗模式 [with *args=(35,)]</div></td>
415
    <td colspan='5' align='center'>pass</td>
416
</tr>
417

    
418
<tr id='pt1.38' class='hiddenRow'>
419
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_36: 不清空应用,反复进入小窗模式 [with *args=(36,)]</div></td>
420
    <td colspan='5' align='center'>pass</td>
421
</tr>
422

    
423
<tr id='pt1.39' class='hiddenRow'>
424
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_37: 不清空应用,反复进入小窗模式 [with *args=(37,)]</div></td>
425
    <td colspan='5' align='center'>pass</td>
426
</tr>
427

    
428
<tr id='pt1.40' class='hiddenRow'>
429
    <td class='none'><div class='testcase'>test_T02_RepeatSmallWindow_38: 不清空应用,反复进入小窗模式 [with *args=(38,)]</div></td>
430
    <td colspan='5' align='center'>pass</td>
431
</tr>
432

    
433
<tr id='ft1.41' class='none'>
434
    <td class='errorCase'><div class='testcase'>test_T02_RepeatSmallWindow_39: 不清空应用,反复进入小窗模式 [with *args=(39,)]</div></td>
435
    <td colspan='5' align='center'>
436

    
437
    <!--css div popup start-->
438
    <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft1.41')" >
439
        error</a>
440

    
441
    <div id='div_ft1.41' class="popup_window">
442
        <div style='text-align: right; color:red;cursor:pointer'>
443
        <a onfocus='this.blur();' onclick="document.getElementById('div_ft1.41').style.display = 'none' " >
444
           [x]</a>
445
        </div>
446
        <pre>
447
        
448
ft1.41: Traceback (most recent call last):
449
  File "D:\python\pycharmProject\lib\site-packages\parameterized\parameterized.py", line 533, in standalone_func
450
    return func(*(a + p.args), **p.kwargs)
451
  File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\testSuites\test_smallwindow.py", line 54, in test_T02_RepeatSmallWindow
452
    App_Window_test.sw_RepeatStart_test(self, choice_num=num)
453
  File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\modules\appwindow.py", line 266, in sw_RepeatStart_test
454
    device(resourceId="android:id/move_window").click()
455
  File "D:\python\pycharmProject\lib\site-packages\uiautomator2\_selector.py", line 150, in click
456
    self.must_wait(timeout=timeout)
457
  File "D:\python\pycharmProject\lib\site-packages\uiautomator2\_selector.py", line 345, in must_wait
458
    raise UiObjectNotFoundError({'code': -32002, 'data': str(self.selector), 'method': 'wait'})
459
uiautomator2.exceptions.UiObjectNotFoundError: -32002 Client error: &lt;&gt; data: Selector [resourceId='android:id/move_window'], method: None
460

    
461

    
462
        </pre>
463
    </div>
464
    <!--css div popup end-->
465

    
466
    </td>
467
</tr>
468

    
469
<tr id='ft1.42' class='none'>
470
    <td class='failCase'><div class='testcase'>test_T02_RepeatSmallWindow_40: 不清空应用,反复进入小窗模式 [with *args=(40,)]</div></td>
471
    <td colspan='5' align='center'>
472

    
473
    <!--css div popup start-->
474
    <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_ft1.42')" >
475
        fail</a>
476

    
477
    <div id='div_ft1.42' class="popup_window">
478
        <div style='text-align: right; color:red;cursor:pointer'>
479
        <a onfocus='this.blur();' onclick="document.getElementById('div_ft1.42').style.display = 'none' " >
480
           [x]</a>
481
        </div>
482
        <pre>
483
        
484
ft1.42: Traceback (most recent call last):
485
  File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\modules\appwindow.py", line 245, in sw_RepeatStart_test
486
    device(resourceId="com.android.launcher3:id/name_tv", text="图库").click()
487
  File "D:\python\pycharmProject\lib\site-packages\uiautomator2\_selector.py", line 150, in click
488
    self.must_wait(timeout=timeout)
489
  File "D:\python\pycharmProject\lib\site-packages\uiautomator2\_selector.py", line 345, in must_wait
490
    raise UiObjectNotFoundError({'code': -32002, 'data': str(self.selector), 'method': 'wait'})
491
uiautomator2.exceptions.UiObjectNotFoundError: -32002 Client error: &lt;&gt; data: Selector [resourceId='com.android.launcher3:id/name_tv', text='图库'], method: None
492

    
493
During handling of the above exception, another exception occurred:
494

    
495
Traceback (most recent call last):
496
  File "D:\python\pycharmProject\lib\site-packages\parameterized\parameterized.py", line 533, in standalone_func
497
    return func(*(a + p.args), **p.kwargs)
498
  File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\testSuites\test_smallwindow.py", line 54, in test_T02_RepeatSmallWindow
499
    App_Window_test.sw_RepeatStart_test(self, choice_num=num)
500
  File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\modules\appwindow.py", line 263, in sw_RepeatStart_test
501
    Failed.failed_test(self, error_info)
502
  File "C:\Users\thundersoft\PycharmProjects\pythonProject1\Figure\framework\fail.py", line 29, in failed_test
503
    self.assertTrue(flag, msg=error_info)
504
AssertionError: False is not true
505

    
506

    
507
        </pre>
508
    </div>
509
    <!--css div popup end-->
510

    
511
    </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>&nbsp;</td>
566
</tr>
567
</table>
568

    
569
<div id='ending'>&nbsp;</div>
570

    
571
</body>
572
</html>