-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex16.html
336 lines (292 loc) · 14.9 KB
/
index16.html
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<!DOCTYPE html>
<html lang="cn">
<head>
<meta charset="utf-8" />
<title>python自动化测试人工智能</title>
<link rel="stylesheet" href="/theme/css/main.css" />
</head>
<body id="index" class="home">
<header id="banner" class="body">
<h1><a href="/">python自动化测试人工智能 </a></h1>
<nav><ul>
<li><a href="/category/ba-zi.html">八字</a></li>
<li><a href="/category/ce-shi.html">测试</a></li>
<li><a href="/category/ce-shi-kuang-jia.html">测试框架</a></li>
<li><a href="/category/common.html">common</a></li>
<li><a href="/category/da-shu-ju.html">大数据</a></li>
<li><a href="/category/feng-shui.html">风水</a></li>
<li><a href="/category/ji-qi-xue-xi.html">机器学习</a></li>
<li><a href="/category/jie-meng.html">解梦</a></li>
<li><a href="/category/linux.html">linux</a></li>
<li><a href="/category/python.html">python</a></li>
<li><a href="/category/shu-ji.html">书籍</a></li>
<li><a href="/category/shu-ju-fen-xi.html">数据分析</a></li>
<li><a href="/category/zhong-cao-yao.html">中草药</a></li>
<li><a href="/category/zhong-yi.html">中医</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<ol id="posts-list" class="hfeed" start="9">
<li><article class="hentry">
<header>
<h1><a href="/python_pytest_testing11.html" rel="bookmark"
title="Permalink to 自动化测试框架pytest教程11-附录2:单元测试和xunit介绍">自动化测试框架pytest教程11-附录2:单元测试和xunit介绍</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-16T10:20:00+08:00">
Published: 三 16 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi-kuang-jia.html">测试框架</a>.</p>
</footer><!-- /.post-info --> <p>第11章 附录2:单元测试和xunit介绍</p>
<p>正在紧张整理中</p>
<a class="readmore" href="/python_pytest_testing11.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_pytest_testing2.html" rel="bookmark"
title="Permalink to 自动化测试框架pytest教程2-测试函数">自动化测试框架pytest教程2-测试函数</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-16T10:20:00+08:00">
Published: 三 16 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi-kuang-jia.html">测试框架</a>.</p>
</footer><!-- /.post-info --> <p>第2章 测试函数</p>
<h3 id="tasks">测试Tasks程序</h3>
<p>被测程序Tasks的结构如下</p>
<table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre> 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</pre></div></td><td class="code"><div class="highlight"><pre><span></span>tasks_proj/
├── CHANGELOG.rst
├── LICENSE
├── MANIFEST.in
├── README.rst
├── setup.py
├── src
│ └── tasks
│ ├── __init__.py
│ ├── api.py
│ ├── cli.py
│ ├── config.py
│ ├── tasksdb_pymongo …</pre></div></td></tr></table>
<a class="readmore" href="/python_pytest_testing2.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_pytest_testing3.html" rel="bookmark"
title="Permalink to 自动化测试框架pytest教程3-pytest Fixtures">自动化测试框架pytest教程3-pytest Fixtures</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-16T10:20:00+08:00">
Published: 三 16 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi-kuang-jia.html">测试框架</a>.</p>
</footer><!-- /.post-info --> <p>第3章 pytest Fixtures</p>
<p>正在紧张整理中</p>
<a class="readmore" href="/python_pytest_testing3.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_pytest_testing4.html" rel="bookmark"
title="Permalink to 自动化测试框架pytest教程4-内置Fixtures">自动化测试框架pytest教程4-内置Fixtures</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-16T10:20:00+08:00">
Published: 三 16 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi-kuang-jia.html">测试框架</a>.</p>
</footer><!-- /.post-info --> <p>第4章 内置Fixtures</p>
<p>正在紧张整理中</p>
<a class="readmore" href="/python_pytest_testing4.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_pytest_testing5.html" rel="bookmark"
title="Permalink to 自动化测试框架pytest教程5-插件">自动化测试框架pytest教程5-插件</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-16T10:20:00+08:00">
Published: 三 16 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi-kuang-jia.html">测试框架</a>.</p>
</footer><!-- /.post-info --> <p>第5章 插件</p>
<p>正在紧张整理中</p>
<a class="readmore" href="/python_pytest_testing5.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_pytest_testing6.html" rel="bookmark"
title="Permalink to 自动化测试框架pytest教程6-配置">自动化测试框架pytest教程6-配置</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-16T10:20:00+08:00">
Published: 三 16 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi-kuang-jia.html">测试框架</a>.</p>
</footer><!-- /.post-info --> <p>第6章 配置</p>
<p>正在紧张整理中</p>
<a class="readmore" href="/python_pytest_testing6.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_pytest_testing7.html" rel="bookmark"
title="Permalink to 自动化测试框架pytest教程7-与其他工具集成">自动化测试框架pytest教程7-与其他工具集成</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-16T10:20:00+08:00">
Published: 三 16 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi-kuang-jia.html">测试框架</a>.</p>
</footer><!-- /.post-info --> <p>第7章 与其他工具集成</p>
<p>正在紧张整理中</p>
<a class="readmore" href="/python_pytest_testing7.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_pytest_testing8.html" rel="bookmark"
title="Permalink to 自动化测试框架pytest教程8-更多插件">自动化测试框架pytest教程8-更多插件</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-16T10:20:00+08:00">
Published: 三 16 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi-kuang-jia.html">测试框架</a>.</p>
</footer><!-- /.post-info --> <p>第8章 更多插件</p>
<p>正在紧张整理中</p>
<a class="readmore" href="/python_pytest_testing8.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_pytest_testing9.html" rel="bookmark"
title="Permalink to 自动化测试框架pytest教程9-应用实例">自动化测试框架pytest教程9-应用实例</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-16T10:20:00+08:00">
Published: 三 16 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi-kuang-jia.html">测试框架</a>.</p>
</footer><!-- /.post-info --> <p>第9章 应用实例</p>
<p>正在紧张整理中</p>
<a class="readmore" href="/python_pytest_testing9.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/testing_training.html" rel="bookmark"
title="Permalink to 接口自动化性能测试线上培训大纲">接口自动化性能测试线上培训大纲</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-05-10T06:20:00+08:00">
Published: 四 10 五月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/ce-shi.html">测试</a>.</p>
</footer><!-- /.post-info --> <p>-- 注意,因为是一对一,帮你解决实际问题的模式,每月只能带3人左右,请提前2个月预约,谢谢!</p>
<h3 id="_1">专家介绍</h3>
<p>徐老师: 曾任职于腾讯、华为等公司,独立带队完成大型项目的全系统测试,担任过技术总监、测试经理以及测试专家职位。现任某主流公司自动化测试架构师。</p>
<p>曾在某公司组建测试部,带至美国纳斯达克上市。在公司项目中曾手把手教刚毕业的毫无编程基础的技校生接口、性能、自动化等测试,结果3个月之后他们都跳槽,薪水从4k涨到10k以上(2015年)。</p>
<p>实践出真绩,所有的培训都会像实际公司项目一样要求实操。</p>
<ul>
<li>实操支持(可以加钉钉pythontesting邀请加入) qq群:144081101 591302926 </li>
<li>道家技术-手相手诊看相中医等钉钉群21734177 qq群:391441566 184175668 338228106 看手相、面相、舌相、抽签、体质识别。服务费50元每人次起。请联系钉钉或者微信pythontesting</li>
<li>提供软件测试、python、数据分析等模拟面试电话与咨询,收费80元(10分钟)一次起, 每小时500元起。</li>
</ul>
<h3 id="_2">专项目列表</h3>
<p>项目可以网上支持学习 …</p>
<a class="readmore" href="/testing_training.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
<a href="/index15.html">«</a>
Page 16 / 21
<a href="/index17.html">»</a>
</p>
</section><!-- /#content -->
<section id="extras" class="body">
<div class="blogroll">
<h2>links</h2>
<ul>
<li><a href="https://china-testing.github.io/testing_training.html">自动化性能接口测试线上及深圳培训与项目实战 qq群:144081101 591302926</a></li>
<li><a href="http://blog.sciencenet.cn/blog-2604609-1112306.html">pandas数据分析scrapy爬虫 521070358 Py人工智能pandas-opencv 6089740</a></li>
<li><a href="http://blog.sciencenet.cn/blog-2604609-1112306.html">中医解梦看相八字算命qq群 391441566 csdn书籍下载-python爬虫 437355848</a></li>
</ul>
</div><!-- /.blogroll -->
</section><!-- /#extras -->
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
Proudly powered by <a href="http://getpelican.com/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about -->
<p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p>
</footer><!-- /#contentinfo -->
</body>
</html>