Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
test
autotest-airtest-web-spd
Commits
58a3c557
Commit
58a3c557
authored
May 24, 2024
by
xiao-hesheng
Browse files
流程十脚本编写
parent
ab279443
Changes
3
Hide whitespace changes
Inline
Side-by-side
air_case/b2_herp3_bs/a2_编辑医院信息.air/a2_编辑医院信息.py
View file @
58a3c557
...
@@ -5,6 +5,7 @@ __author__ = "xiaohesheng"
...
@@ -5,6 +5,7 @@ __author__ = "xiaohesheng"
"""
"""
case_tag:api,herp-web,a2_编辑医院信息,id2263,id2263-2,sit,on
case_tag:api,herp-web,a2_编辑医院信息,id2263,id2263-2,sit,on
主数据平台:a2_编辑医院信息
主数据平台:a2_编辑医院信息
python runner_test.py tag id2263-2 debug sit
"""
"""
from
common.common_func
import
commonFuc
from
common.common_func
import
commonFuc
...
...
report/summary.html
View file @
58a3c557
...
@@ -41,6 +41,27 @@
...
@@ -41,6 +41,27 @@
</style>
</style>
</head>
</head>
<body>
<body>
<script>
function
updateTime
()
{
var
now
=
new
Date
();
var
year
=
now
.
getFullYear
();
var
month
=
now
.
getMonth
()
+
1
;
var
day
=
now
.
getDate
();
var
hours
=
now
.
getHours
();
var
minutes
=
now
.
getMinutes
();
var
seconds
=
now
.
getSeconds
();
month
=
(
month
<
10
?
"
0
"
:
""
)
+
month
;
day
=
(
day
<
10
?
"
0
"
:
""
)
+
day
;
hours
=
(
hours
<
10
?
"
0
"
:
""
)
+
hours
;
minutes
=
(
minutes
<
10
?
"
0
"
:
""
)
+
minutes
;
seconds
=
(
seconds
<
10
?
"
0
"
:
""
)
+
seconds
;
var
timeString
=
year
+
"
-
"
+
month
+
"
-
"
+
day
+
"
"
+
hours
+
"
:
"
+
minutes
+
"
:
"
+
seconds
;
document
.
getElementById
(
"
currentDateTime
"
).
textContent
=
timeString
;
}
setInterval
(
updateTime
,
1000
);
// 每秒更新一次时间
</script>
<div
id=
"currentDateTime"
></div>
<div>
<div>
<!--<div><h2>Test Statistics</h2></div>-->
<!--<div><h2>Test Statistics</h2></div>-->
...
@@ -56,7 +77,7 @@
...
@@ -56,7 +77,7 @@
<tr
width=
"600"
>
<tr
width=
"600"
>
<td
class=
'details-col-elapsed'
>
1
</td>
<td
class=
'details-col-elapsed'
>
1
</td>
<td
class=
'details-col-elapsed'
>
1
</td>
<td
class=
'details-col-elapsed'
>
1
</td>
<td
class=
'details-col-elapsed'
>
8分55
秒
</td>
<td
class=
'details-col-elapsed'
>
0分2
秒
</td>
<td
class=
"details-col-elapsed"
>
100.0%
</td>
<td
class=
"details-col-elapsed"
>
100.0%
</td>
</tr>
</tr>
</table>
</table>
...
@@ -72,9 +93,9 @@
...
@@ -72,9 +93,9 @@
</tr>
</tr>
<tr
width=
"600"
>
<tr
width=
"600"
>
<td
class=
"details-col-elapsed"
><a
href=
'../log/a
_a7流程五_中心库入库结算_正结算3_内网验收入库结算/log.html'
target=
'_blank'
>
a_a7流程五_中心库入库结算_正结算3_内网验收入库结算
</a></td>
<td
class=
"details-col-elapsed"
><a
href=
'../log/a
2_编辑医院信息/log.html'
target=
'_blank'
>
a2_编辑医院信息
</a></td>
<td
class=
"success"
>
成功
</td>
<td
class=
"success"
>
成功
</td>
<td
class=
"details-col-elapsed"
>
535.834
</td>
<td
class=
"details-col-elapsed"
>
1.895
</td>
<td
class=
"details-col-elapsed"
>
xiaohesheng
</td>
<td
class=
"details-col-elapsed"
>
xiaohesheng
</td>
</tr>
</tr>
...
...
templates/summary_template.html
View file @
58a3c557
...
@@ -41,6 +41,27 @@
...
@@ -41,6 +41,27 @@
</style>
</style>
</head>
</head>
<body>
<body>
<script>
function
updateTime
()
{
var
now
=
new
Date
();
var
year
=
now
.
getFullYear
();
var
month
=
now
.
getMonth
()
+
1
;
var
day
=
now
.
getDate
();
var
hours
=
now
.
getHours
();
var
minutes
=
now
.
getMinutes
();
var
seconds
=
now
.
getSeconds
();
month
=
(
month
<
10
?
"
0
"
:
""
)
+
month
;
day
=
(
day
<
10
?
"
0
"
:
""
)
+
day
;
hours
=
(
hours
<
10
?
"
0
"
:
""
)
+
hours
;
minutes
=
(
minutes
<
10
?
"
0
"
:
""
)
+
minutes
;
seconds
=
(
seconds
<
10
?
"
0
"
:
""
)
+
seconds
;
var
timeString
=
year
+
"
-
"
+
month
+
"
-
"
+
day
+
"
"
+
hours
+
"
:
"
+
minutes
+
"
:
"
+
seconds
;
document
.
getElementById
(
"
currentDateTime
"
).
textContent
=
timeString
;
}
setInterval
(
updateTime
,
1000
);
// 每秒更新一次时间
</script>
<div
id=
"currentDateTime"
></div>
<div>
<div>
<!--<div><h2>Test Statistics</h2></div>-->
<!--<div><h2>Test Statistics</h2></div>-->
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment