汽车电子与软件

文章数:1511 被阅读:4580472

账号入驻

汽车软件开发自动化测试攻略

最新更新时间:2022-03-14
    阅读数:
随着软件开发在造车行业中占有越来越重要的地位,敏捷开发的思想在造车领域中也逐渐地被重视起来,随之而来的是整车厂对自动化测试需求越来越强烈。 本文结合在自动化测试方面的丰富经验,简单介绍一下实施自动化测试可能需要具备的技能及具体实践流程。


自动化测试城门-Python



要实现完全的自动化测试,我们首先要做的是先实现半自动化测试,即编写自动化测试脚本。俗话说 Life is short,I use Python ,Python作为一种简单易上手的高级编程语言,凭借其“无所不包”的库,成为测试脚本开发的不二之选。这里简单介绍一下,测试脚本开发常用的一些Python标准库。


城门士卒-os库


在编写测试脚本时,不可避免地会遇到对文件路径的获取及编辑,os库里的path函数可以方便地实现这些操作,如绝对路径获取os.path.abspath()、路径拼接os.path.join()、路径存在判断os.path.exist()等;如果你需要在Python中运行测试工具提供的命令,那么os库的system函数或popen函数可以让你方便地调用cmd(Windows)或shell(Linux)。


城门士卒-sys库


如果你所编写的测试脚本有跨平台运行的需求,那么你可以通过sys库的platform函数获取脚本的运行环境。根据运行环境的不同,编写不同的批处理命令;sys库中的argv函数,还可以为你的测试脚本提供简单的命令行接口,当你的脚本需要接收外部传递的参数时,你可以通过sys.argv[]方便地获取。而如果你需要编写更复杂更友好的命令行接口,你需要使用Python的另外一个标准库argparse来实现。


城门队长-re库


正则表达式是编写测试脚本的必备技能,因为有时我们会遇到复杂的文本处理,如在工程文件中查找需要修改的配置,并将其修改为我们所需要的内容。此时一般的查找替换函数就很难实现这个功能,我们只能借助强大的re库(正则表达式)来解决这个棘手的问题。re库提供的函数有:

re.compile() :编译正则表达式,生成一个 Pattern 对象;

re.findall() :搜索所有满足条件的字符串;re.match():从第一个字符开始匹配模式;

re.search() :搜索第一个满足条件的字符串,查找到第一个停止;

re.sub() :替换满足条件的字符串。


在使用re模块时,我们一般先用re.compile()将正则表达式编译生成为一个Pattern对象,然后再基于这个对象进行findall、match等操作,这样既可以提高代码的可读性,也可以提高代码的运行效率。

使用正则表达式进行查找替换是很方便的,但是在很多时候我们需要在匹配的字符串前后添加内容,并且保留匹配的内容,这时普通的查找替换是难以实现的。

如:希望将hour: minute格式后添加:00,形成hour: minute: seconds这种格式。此时可以采用如下方式来实现:

查找的正则表达式:

(\d:\d)

替换为:

\1\:00


这里,我们在替换的字符中使用\1,来引用正则表达式中第一个分组匹配到的内容,如果正则表达式中有多个分组,可以依次使用\2\3等进行引用,可以使用\0来引用整个正则表达式的内容。


小结



在掌握了Python基础语法和这三个标准库后,自动化测试的大门就为我们敞开了。但是想要编写一个可以驱动测试工具进行测试的脚本,我们还需要了解测试工具在headless模式 下的接口情况,如果工具提供的接口丰富,可以实现在headless模式[1]下对测试工程进行配置和执行等操作,那么我们的测试脚本开发工作将会顺利地进行。

但是如果工具提供的headless模式接口有限,无法满足测试脚本的需求,那么进入自动化测试大门后,等待我们的就是另一个棘手的问题:如何对工程文件进行解析与修改。考虑到大部分的工程文件都是XML格式的,因此后续我们就简单介绍一下如何通过Python解析和修改XML文件。

[1]:这里的headless模式是指在不使用工具GUI的情况下,以纯命令行的方式进行工具使用的模式。


自动化测试瓮城——XML文件



瓮城守备—XML解析



在Python的标准库中,有专门处理XML文件的库,无需安装第三方库就可以使用Python进行XML文件的解析,但是要想准确地从XML文件中解析出想要的信息,我们首先需要简单了解一下XML的文件结构。如下是一个简单的XML文档。

Everyday Italian
Giada DeLaurentiis
2005
30.00
HarryPotter
J K.Rowling
2005
29.99
LearningXML
Erik T.Ray
2003
39.95


其中Harry Potter元素的结构如下图所示



注:图片来源于https://www.w3school.com.cn/xml/xml_tree.asp

在该XML文本中,根元素是,文档中的所有元素都被包含在里。元素有 4 个子元素:、< author>、<year>、<price>。每个子元素都包含一个文本内容,但只有子元素title和元素book拥有属性。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 我们在解析XML时,一般需要获取的就是元素的属性值以及元素的文本内容。以下我们就简单介绍一下,如何通过python获取元素的属性值及文本内容。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> Python的XML库提供了一个通过标签名称获取元素的函数getElementsByTagName(),该函数返回的是一个包含元素对象的list,通过调用元素对象的attributes方法,我们就可以方便地获取元素的属性值。如,我们可以使用如下命令获取XML文件中第一个标签为title的lang属性值: </span> </div> </div> <div style="margin-left: 8px;margin-right: 8px;"> <div style="display: flex;flex-flow: row nowrap;margin: 10px 0%;"> <div style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;"> <div powered-by="xiumi.us" style="font-size: 55px;color: rgb(33, 36, 237);"> <p style="white-space: normal;"> “ </p> </div> </div> <div style="display: inline-block;vertical-align: top;width: auto;flex: 100 100 0%;align-self: flex-start;height: auto;"> <div powered-by="xiumi.us" style="margin: 20px 0% 10px;text-align: center;justify-content: center;transform: translate3d(-17px, 0px, 0px);"> <div style="text-align: justify;padding-right: 20px;padding-left: 20px;"> <p style="white-space: normal;"> root.getElementsByTagName("title")[ <span style="color: rgb(0, 82, 255);"> 0 </span> ].attributes.getNamedItem("lang").nodeValue </p> </div> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 获取第一个标签为title的元素的文本信息的代码如下: </span> </div> </div> <div style="margin-left: 8px;margin-right: 8px;"> <div style="display: flex;flex-flow: row nowrap;margin: 10px 0%;"> <div style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;"> <div powered-by="xiumi.us" style="font-size: 55px;color: rgb(33, 36, 237);"> <p style="white-space: normal;"> “ </p> </div> </div> <div style="display: inline-block;vertical-align: top;width: auto;flex: 100 100 0%;align-self: flex-start;height: auto;"> <div powered-by="xiumi.us" style="margin: 20px 0% 10px;text-align: center;justify-content: center;transform: translate3d(-17px, 0px, 0px);"> <div style="text-align: justify;padding-right: 20px;padding-left: 20px;"> <p style="white-space: normal;"> root.getElementsByTagName("title")[ <span style="color: rgb(0, 82, 255);"> 0 </span> ].firstChild.data </p> <p style="white-space: normal;"> <br/> </p> <p style="white-space: normal;"> <br/> </p> </div> </div> </div> </div> </div> <div style="margin: 10px 8px;"> <div style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="margin: 2px 0%;"> <div style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"> <p style="white-space: normal;"> <strong> 瓮城参将—XML修改 </strong> </p> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> XML元素的属性和文本内容修改很简单,在上小节中获取对应的元素信息后,直接对其进行赋值即可。但是,修改后的信息保存在XML对象中。要完成对实际XML文件的修改,我们还需要用XML对象中的内容覆盖原有的XML文件,这一步存在很多棘手的问题。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 在XML文件中,为了避免元素文本内容中存在的特殊字符引起解析器错误,在文本内容中引入实体引用来替代可能导致错误的字符,如回车 、双引号"、单引号'。如果使用Python的xml.dom.minidom库解析并使用writexml输出XML文件,该库会将这些实体引用转义为其实际字符进行保存。如果不对XML对象中的内容进行处理,导出的XML文件将会存在很多错误。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 为了避免这个情况的出现,我们需要使用之前小节介绍的正则表达式将这些字符再替换为其实体引用。这个过程需要我们能熟练使用正则表达式进行文本查找与替换。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 除了XML文件中的实体引用外,如果XML文件中存在中文字符,那么还有一个需要注意的事情:不要使用with open as的方式读写XML文件,要使用open指定文件的编码为'utf-8’ 的方式,对XML文件进行写入。如下所示: </span> </div> </div> <div style="margin-left: 8px;margin-right: 8px;"> <div style="display: flex;flex-flow: row nowrap;margin: 10px 0%;"> <div style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;"> <div powered-by="xiumi.us" style="font-size: 55px;color: rgb(33, 36, 237);"> <p style="white-space: normal;"> “ </p> </div> </div> <div style="display: inline-block;vertical-align: top;width: auto;flex: 100 100 0%;align-self: flex-start;height: auto;"> <div powered-by="xiumi.us" style="margin: 20px 0% 10px;text-align: center;justify-content: center;transform: translate3d(-17px, 0px, 0px);"> <div style="text-align: justify;padding-right: 20px;padding-left: 20px;"> <p style="white-space: normal;"> f = open(self.JenkinsJobXMLPath, 'w', encoding="utf-8") </p> <p style="white-space: normal;"> dom.writexml(f, indent='', addindent='\t', newl='', encoding='utf-8') </p> <p style="white-space: normal;"> f.close() </p> </div> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin: 10px 8px;"> <div style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="margin: 2px 0%;"> <div style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"> <p style="white-space: normal;"> <strong> 小结 </strong> </p> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 上述两个问题是修改XML文件时普遍会遇到的问题。解决了这两个问题,我们基本上就可以完美实现XML文件的修改了。此时,我们就可以编写自动化程度更高的测试脚本,然而我们依然无法实现完全的自动化测试,因为我们仍然需要手动地去执行测试脚本。那么,我们该如何实现测试脚本的自动执行呢?这就需要我们打通自动化测试的最后一个关卡,Jenkins。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin-left: 8px;margin-right: 8px;"> <div style="margin: 30px 0% 20px;display: flex;flex-flow: row nowrap;"> <div style="display: inline-block;vertical-align: top;width: auto;flex: 0 0 0%;height: auto;line-height: 0;align-self: flex-start;"> <div powered-by="xiumi.us" style="transform: rotateZ(328deg);"> <div style="text-align: left;justify-content: flex-start;"> <div style="display: inline-block;width: 101px;height: 34px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);"> <div> <svg style="float:left;line-height:0;width:0;vertical-align:top;" viewbox="0 0 1 1"> </svg> </div> </div> </div> </div> </div> <div style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;background-color: rgb(255, 255, 255);margin-left: -80px;align-self: flex-start;z-index: 2;"> <div powered-by="xiumi.us" style="margin-right: 0%;margin-left: 0%;text-align: center;justify-content: center;isolation: isolate;"> <div style="text-align: justify;font-size: 18px;"> <p style="white-space: normal;"> <strong> 自动化测试总兵——Jenkins </strong> </p> </div> </div> </div> <div style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;margin-left: 7px;"> <div powered-by="xiumi.us" style="text-align: left;justify-content: flex-start;transform: translate3d(3px, 0px, 0px);"> <div style="display: inline-block;width: 9px;height: 9px;vertical-align: top;overflow: hidden;border-width: 0px;border-radius: 112px;border-style: none;border-color: rgb(62, 62, 62);background-color: rgb(33, 36, 237);"> <div> <svg style="float:left;line-height:0;width:0;vertical-align:top;" viewbox="0 0 1 1"> </svg> </div> </div> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <strong> <span style="letter-spacing: 1px;"> Jenkins 是一个开源、免费的可扩展持续集成引擎,主要用于: </span> </strong> <span style="letter-spacing: 1px;"> </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <strong> <span style="letter-spacing: 1px;"> <br/> </span> </strong> </div> <ul class="list-paddingleft-1" style="list-style-type: disc;margin-left: 8px;margin-right: 8px;"> <li style="color: rgb(0, 82, 255);"> <p> <span style="letter-spacing: 1px;color: rgb(0, 82, 255);"> 持续、自动地构建/测试软件项目; </span> </p> </li> <li style="color: rgb(0, 82, 255);"> <p> <span style="letter-spacing: 1px;color: rgb(0, 82, 255);"> 监控一些定时执行的任务。 </span> </p> </li> </ul> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 为了实现测试脚本的自动化运行,我们需要配置Jenkins Job,使Jenkins在设置的触发条件满足时,自动搭建测试脚本的运行环境,然后执行测试脚本,最后将测试结果发送给相关人员。因此我们需要了解Jenkins的源码管理、构建<a href="//www.eeworld.com.cn/zhuanti/00SyTC" style="color:#4595e6;" target="_blank">触发器</a>、构建及邮件通知等设置。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin: 10px 8px;"> <div style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="margin: 2px 0%;"> <div style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"> <p style="white-space: normal;"> <strong> 总兵的连招1—源码管理 </strong> </p> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> Jenkins服务器最基本的作用是监视版本<a href="//www.eeworld.com.cn/zhuanti/1SibDS" style="color:#4595e6;" target="_blank">控制器</a>,当版本库有新的更改时,检出版本库中的文件,或者,你可以选择只是定期检出版本库中最新的文件。无论哪种方式,Jenkins与版本控制软件的集成是必不可少的。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> Jenkins开箱即用式支持Git、CVS和SVN,还通过插件与大量其他版本控制工具进行集成,如ClearCase、Perforce、PVCS等等。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 不同的版本控制软件在Jenkins端的需要的配置并不相同,有的甚至差异很大。但是只要你熟悉你所使用的版本控制软件,那么在Jenkins端,就可以很容易地对版本库进行配置。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 以SVN为例,为了从SVN仓库中获取源码,我们需要提供相应SVN版本库的URL,在完成URL输入后,Jenkins会检查URL的有效性,如果所提供的URL要求身份认证,Jenkins将会自动提示选择相应的凭据以验证账号信息,如下图所示。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="text-align: center;margin-left: 8px;margin-right: 8px;"> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 默认情况下,Jenkins会将给定的代码库中的文件检出到Jenkins Job的Workspace中。如果你需要将代码库检出到指定的目录中,你可以在Local module directory中输入你想要的目录名或相对Workspace的路径。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 如果你需要从多个SVN版本库中获取文件,可以点击“Add module ...”按钮,来添加别的版本库。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin: 10px 8px;"> <div style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="margin: 2px 0%;"> <div style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"> <p style="white-space: normal;"> <strong> 总兵的连招2—构建触发器 </strong> </p> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 常用的构建触发器有周期性构建和SCM轮询构建,两者都是使用相同corn风格语法进行设置,如下图所示。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="text-align: center;margin-left: 8px;margin-right: 8px;"> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 我们只需要了解corn风格的语法,就可以方便地进行构建触发器的设置。corn风格的语法包含五个由空格分隔的字段: </span> <strong> <span style="letter-spacing: 1px;color: rgb(0, 82, 255);"> MINUTE HOUR DOM MONTH DOW </span> </strong> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 每个字段使用下面的值: </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin: 20px 8px 10px;"> <div style="display: inline-block;width: 100%;vertical-align: top;border-style: solid;border-width: 1px;border-color: rgb(33, 36, 237);padding: 21px;"> <div powered-by="xiumi.us" style="margin: -28px 0% 9px;"> <div style="display: inline-block;width: auto;vertical-align: top;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="transform: rotateZ(328deg);"> <div style="text-align: center;justify-content: center;margin-right: 0%;margin-left: 0%;"> <div style="display: inline-block;width: 26px;height: 13px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);background-color: rgba(255, 255, 255, 0);"> <div> <svg style="float:left;line-height:0;width:0;vertical-align:top;" viewbox="0 0 1 1"> </svg> </div> </div> </div> </div> </div> </div> <div powered-by="xiumi.us"> <p style="white-space: normal;"> <span style="color: rgb(33, 36, 237);"> MINUTE </span> 小时内的分钟数(0-59) </p> <p style="white-space: normal;"> <span style="color: rgb(33, 36, 237);"> HOUR </span> 一天的小时数(0-23) </p> <p style="white-space: normal;"> <span style="color: rgb(33, 36, 237);"> DOM </span> 本月的天数(1-31) </p> <p style="white-space: normal;"> <span style="color: rgb(33, 36, 237);"> MONTH </span> 月份(1-12) </p> <p style="white-space: normal;"> <span style="color: rgb(33, 36, 237);"> DOW </span> 本周的一天(0-7),其中0和7都是星期日 </p> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 要为一个字段指定多个值,可以使用以下操作符: </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin: 20px 8px 10px;"> <div style="display: inline-block;width: 100%;vertical-align: top;border-style: solid;border-width: 1px;border-color: rgb(33, 36, 237);padding: 21px;"> <div powered-by="xiumi.us" style="margin: -28px 0% 9px;"> <div style="display: inline-block;width: auto;vertical-align: top;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="transform: rotateZ(328deg);"> <div style="text-align: center;justify-content: center;margin-right: 0%;margin-left: 0%;"> <div style="display: inline-block;width: 26px;height: 13px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);background-color: rgba(255, 255, 255, 0);"> <div> <svg style="float:left;line-height:0;width:0;vertical-align:top;" viewbox="0 0 1 1"> </svg> </div> </div> </div> </div> </div> </div> <div powered-by="xiumi.us"> <p style="white-space: normal;"> <span style="color: rgb(33, 36, 237);"> “*”代表一个字段的所有可能的值 </span> 。如,“* * * * *”表示周期为一分钟; </p> <p style="white-space: normal;"> <br/> </p> <p style="white-space: normal;"> <span style="color: rgb(33, 36, 237);"> 使用“M-N”定义范围 </span> 。如,在DOW中“1-5”表示周一到周五; </p> <p style="white-space: normal;"> <br/> </p> <p style="white-space: normal;"> <span style="color: rgb(33, 36, 237);"> 使用“/”定义范围间隔时间 </span> 。如,MINUTE字段“*/5”表示每5分钟; </p> <p style="white-space: normal;"> <br/> </p> <p style="white-space: normal;"> <span style="color: rgb(33, 36, 237);"> 逗号分隔的列表表示有效值 </span> 。如,MINUTE字段“15,45”表示在每小时的第15和第45分钟运行; </p> <p style="white-space: normal;"> <br/> </p> </div> </div> </div> <div powered-by="xiumi.us" style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;font-size: 14px;"> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;font-size: 14px;"> <br/> </div> <div> 通常,我们只需要在这个字段中写一行,但是对于更复杂的调度配置,我们可能需要写多行。 </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin: 10px 8px;"> <div style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="margin: 2px 0%;"> <div style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"> <p style="white-space: normal;"> <strong> 总兵的连招3—构建 </strong> </p> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 在完成了之前的配置后,Jenkins应该知道在何时从何处获取测试工程及源码。现在我们需要做的事情是,告诉Jenkins在获取测试工程和源码后该如何做。一般情况下,我们会将之前编写的测试脚本放在测试工程的版本库中,或者从专门的测试脚本库中检出到Jenkins Job的Workspace中,因此我们在这里只需要执行编写好的测试脚本即可。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 执行脚本的方式可以根据具体脚本的运行环境,选择执行Shell或Windows批处理命令。因此我们需要简单地了解Shell或Windows的常用批处理命令。为了避免编写复杂的批处理命令,我们应尽量把工作放在测试脚本中完成。本文以如下图所示的简单的Windows批处理为例,简单介绍一下构建步骤的编写。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="text-align: center;margin-left: 8px;margin-right: 8px;"> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 在上图中,有两行命令: </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin: 20px 8px 10px;"> <div style="display: inline-block;width: 100%;vertical-align: top;border-style: solid;border-width: 1px;border-color: rgb(33, 36, 237);padding: 21px;"> <div powered-by="xiumi.us" style="margin: -28px 0% 9px;"> <div style="display: inline-block;width: auto;vertical-align: top;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="transform: rotateZ(328deg);"> <div style="text-align: center;justify-content: center;margin-right: 0%;margin-left: 0%;"> <div style="display: inline-block;width: 26px;height: 13px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);background-color: rgba(255, 255, 255, 0);"> <div> <svg style="float:left;line-height:0;width:0;vertical-align:top;" viewbox="0 0 1 1"> </svg> </div> </div> </div> </div> </div> </div> <div powered-by="xiumi.us"> <p style="white-space: normal;"> <strong> 第一行的作用:是将目录由初始的Workspace目录切换到Workspace下的Script目录; </strong> </p> <p style="white-space: normal;"> <br/> </p> <p style="white-space: normal;"> <strong> 第二行的作用:是运行Script目录中的测试脚本Script.py,并为该脚本传递一个参数,该参数为Jenkins的环境变量JOB_NAME,即当前Jenkins Job的名称。 </strong> </p> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 这样就完成了对测试脚本的调用。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin: 10px 8px;"> <div style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="margin: 2px 0%;"> <div style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"> <p style="white-space: normal;"> <strong> 总兵的连招4—邮件通知 </strong> </p> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 自动化测试的一个重要环节,就是将测试结果通知到相关人员,如开发\测试人员,或项目管理人员等。Jenkins对电子邮件提供了开箱即用的支持,我们可以在构建后处理中勾选E-mail Notification,如下图所示。然后输入需要通知的人员邮箱,即可使Jenkins在构建完成后,向指定的人员发送一封友好的电子邮件。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="text-align: center;margin-left: 8px;margin-right: 8px;"> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 如果你想对邮件内容进行高度定制,那么E-mail Notification就无法满足需求,我们需要安装可编辑的电子邮件插件Editable Email Notification,来实现电子邮件的定制化工作。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 在Editable Email Notification中,我们可以用HTML编写电子邮件的内容,并引用Jenkins的环境变量,这样我们就可以在邮件中描述当前Jenkins Job的测试执行概况,让收件人快速地了解当前的测试状态。但是这要求我们对HTML和Jenkins环境变量都有比较深的了解。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 有些情况下,我们需要在邮件中执行一些数据提取等复杂工作,比如将控制台输出中的一些数据在邮件中进行展示,这时我们需要借助email-ext-plugin插件提供的Groovy接口,用Groovy编写邮件内容。 </span> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 总之,Jenkins的邮件通知功能非常强大,我们可以在自动化测试的工作中不断进行探索。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin: 10px 8px;"> <div style="display: inline-block;width: auto;vertical-align: top;border-left: 5px solid rgb(33, 36, 237);border-bottom-left-radius: 0px;padding-left: 9px;min-width: 10%;height: auto;"> <div powered-by="xiumi.us" style="margin: 2px 0%;"> <div style="color: rgb(33, 36, 237);font-size: 17px;line-height: 1.3;"> <p style="white-space: normal;"> <strong> 小结 </strong> </p> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 本节简单介绍了Jenkins的传统表单类型的Freestyle Job,然而目前Jenkins的发展方向是 Pipeline Job,Jenkins将Pipeline作为优先开发项目。这就意味着Pipeline在应用程序中是作为实体被设计和支持的,而不是通过在Jenkins中连接一堆任务而形成流水线。Pipeline类型的Job可以通过编程实现,可以实现更复杂构建逻辑和工作流,更重要的是在Pipeline中有专门的用于流水线编程的结构化<a href="//www.eeworld.com.cn/zhuanti/TKePO0" style="color:#4595e6;" target="_blank">DSL</a>,其可以在工作空间中轻松地实现文件共享功能。同时Pipeline具有全新的Jenkins可视化界面 ——Blue Ocean,其为Pipeline的每个阶段添加了图形化的展示,如下图所示。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="text-align: center;margin-left: 8px;margin-right: 8px;"> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 因此我们在熟悉了表单类型的 Freestyle Job后,可以尝试将其转换为Pipeline的Job,当然目前并非所有的Jenkins插件都支持Pipeline,有些老旧的插件还无法支持Pipeline,我们需要根据实际的工作情况进行Jenkins工程类型的选择。 </span> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> </div> <div style="margin-left: 8px;margin-right: 8px;"> <div style="margin: 30px 0% 20px;display: flex;flex-flow: row nowrap;"> <div style="display: inline-block;vertical-align: top;width: auto;flex: 0 0 0%;height: auto;line-height: 0;align-self: flex-start;"> <div powered-by="xiumi.us" style="transform: rotateZ(328deg);"> <div style="text-align: left;justify-content: flex-start;"> <div style="display: inline-block;width: 101px;height: 34px;vertical-align: top;overflow: hidden;border-style: solid;border-width: 1px;border-radius: 50%;border-color: rgb(33, 36, 237);"> <div> <svg style="float:left;line-height:0;width:0;vertical-align:top;" viewbox="0 0 1 1"> </svg> </div> </div> </div> </div> </div> <div style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;background-color: rgb(255, 255, 255);margin-left: -80px;align-self: flex-start;z-index: 2;"> <div powered-by="xiumi.us" style="margin-right: 0%;margin-left: 0%;text-align: center;justify-content: center;isolation: isolate;"> <div style="text-align: justify;font-size: 18px;"> <p style="white-space: normal;"> <strong> 攻城总结 </strong> </p> </div> </div> </div> <div style="display: inline-block;vertical-align: top;width: auto;min-width: 10%;flex: 0 0 auto;height: auto;align-self: flex-start;margin-left: 7px;"> <div powered-by="xiumi.us" style="text-align: left;justify-content: flex-start;transform: translate3d(3px, 0px, 0px);"> <div style="display: inline-block;width: 9px;height: 9px;vertical-align: top;overflow: hidden;border-width: 0px;border-radius: 112px;border-style: none;border-color: rgb(62, 62, 62);background-color: rgb(33, 36, 237);"> <div> <svg style="float:left;line-height:0;width:0;vertical-align:top;" viewbox="0 0 1 1"> </svg> </div> </div> </div> </div> </div> </div> <div powered-by="xiumi.us"> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="white-space: normal;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <span style="letter-spacing: 1px;"> 古人云:知所不豫,行且通焉。虽然通过本文,我们全面地了解了自动化测试的流程,但是只有在自动化测试的实践中不断探索,我们才能真正窥得自动化测试的全貌。北汇信息作为专业的自动化测试服务供应商,也可以为客户提供优质全面的自动化测试服务。 </span> </div> </div> </div> <div style="font-size: 14px;white-space: normal;text-align: center;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="font-size: 14px;white-space: normal;text-align: center;line-height: 2em;margin-left: 8px;margin-right: 8px;"> <br/> </div> <div style="font-size: 14px;white-space: normal;text-align: center;margin-left: 8px;margin-right: 8px;"> </div> <div style="font-size: 14px;white-space: normal;text-align: center;margin-left: 8px;margin-right: 8px;"> <br/> </div></div> <div> <hr/> <p><h2>最新有关汽车电子与软件的文章</h2></p> <div class="hdlist"> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a388078.jspx" target="_blank" title="用物流来理解OSI模型"><span class="serial-num">■</span>用物流来理解OSI模型</a> </dt> </dl> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a388079.jspx" target="_blank" title="谈谈新能源汽车最大载重375公斤的争议"><span class="serial-num">■</span>谈谈新能源汽车最大载重375公斤的争议</a> </dt> </dl> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a388082.jspx" target="_blank" title="直播预告 | AUTOSAR SOME/IP技术解读"><span class="serial-num">■</span>直播预告 | AUTOSAR SOME/IP技术解读</a> </dt> </dl> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a388081.jspx" target="_blank" title="什么是汽车麋鹿测试?"><span class="serial-num">■</span>什么是汽车麋鹿测试?</a> </dt> </dl> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a388083.jspx" target="_blank" title="AP AUTOSAR硬核技术(5):诊断管理"><span class="serial-num">■</span>AP AUTOSAR硬核技术(5):诊断管理</a> </dt> </dl> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a388085.jspx" target="_blank" title="今天直播 | CAN XL国际研讨会"><span class="serial-num">■</span>今天直播 | CAN XL国际研讨会</a> </dt> </dl> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a388084.jspx" target="_blank" title="定制一个车规级ECU要多少开发费?"><span class="serial-num">■</span>定制一个车规级ECU要多少开发费?</a> </dt> </dl> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a387617.jspx" target="_blank" title="“客户都不怕,你们怕什么”——汽车软件静态分析价值的反思"><span class="serial-num">■</span>“客户都不怕,你们怕什么”——汽车软件静态分析价值的反思</a> </dt> </dl> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a387619.jspx" target="_blank" title="【本周开幕】SAE-AWC 2024 汽车EEA创新技术论坛 | 免费报名参会"><span class="serial-num">■</span>【本周开幕】SAE-AWC 2024 汽车EEA创新技术论坛 | 免费报名参会</a> </dt> </dl> <dl class="subject" style="width: auto;"> <dt><a class="ov-astrict" style="display: inline;" href="https://www.eeworld.com.cn/emp/aes/a387618.jspx" target="_blank" title="电子机械制动系统(EMB)控制算法详解 —— 以同驭汽车、菲格智能为例"><span class="serial-num">■</span>电子机械制动系统(EMB)控制算法详解 —— 以同驭汽车、菲格智能为例</a> </dt> </dl> </div> </div> <script src="//news.eeworld.com.cn/mp/countpv/375117"></script> </div> </div> </div> </div> </div> <div class="clear"></div> </div> <section id="newsfooter"> <div class="boxfit boxline2 boxbg1"> <div class="boxwrapmix" style="width:1400px;"> <div class="newsfooter clearfix"> <div class="newsftln"> <div class="qrcode"><p> <br>EEWorld订阅号</p><img src="//6.eewimg.cn/news/statics/qrcode/ffdyh.jpg"></div> <div class="qrcode" ><p> <br>EEWorld服务号</p><img src="//6.eewimg.cn/news/statics/qrcode/fwh.jpg" /></div> <div class="qrcode"><p> <br>汽车开发圈</p><img src="//6.eewimg.cn/news/statics/qrcode/car.jpg"></div> </div> <div class="newsftr"> <p class="newf_p1"> <span><a href="//www.eeworld.com.cn/about_us/about_engver.html">About Us</a></span> <span><a href="//www.eeworld.com.cn/about_us/about_chnver.html">关于我们</a></span> <span><a href="//www.eeworld.com.cn/page/service.html">客户服务</a></span> <span><a href="//www.eeworld.com.cn/contact.html">联系方式</a></span> <span><a href="//datasheet.eeworld.com.cn/">器件索引</a></span> <span><a href="//www.eeworld.com.cn/sitemap.html">网站地图</a></span> <span><a href="//www.eeworld.com.cn/latestnews/">最新更新</a></span> <span><a href="//m.eeworld.com.cn">手机版</a></span> </p> <p class="newf_p2"> <span class="fontw">站点相关:</span> <span><a href="//training.eeworld.com.cn/TI/" >TI培训</a></span> </p> <p class="newf_p3"> <span><img src="//www.eeworld.com.cn/statics/images/channel_footpic2.jpg" /></span> <span><img src="//www.eeworld.com.cn/statics/images/channel_footpic3.jpg" /></span> <span><img src="//www.eeworld.com.cn/statics/images/channel_footpic4.jpg" /></span> <span>北京市海淀区中关村大街18号B座15层1530室</span> <span>电话:(010)82350740</span> <span> 邮编:100190</span> </p> </div> </div> </div> </div> <div class="clearfix"></div> </section> <section id="newsfooterbtm"> <div class="boxfit boxbg2"> <div class="boxwrapmix"> <div class="footcopy txtc6"> <span>电子工程世界版权所有</span> <span>京ICP证060456号</span> <span><a href="https://beian.miit.gov.cn/" target="_blank">京ICP备10001474号-1</a></span> <span><a href="//www.eeworld.com.cn/corp/pifu.html" target="_blank">电信业务审批[2006]字第258号函</a></span> <span><a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010802033920" ><img src="https://www.eeworld.com.cn/statics/img/beian.png" style="margin:0;" />京公网安备 11010802033920号</a></span> <span>Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved</span> </div> </div> </div> </section> <script type="text/javascript"> var recommend = 0; $(function(){ $("#owl-example").owlCarousel({ items: 1, autoPlay: true, pagination: true, navigation: true, navigationText: [" "," "], }); $(function(){ $('#owl-demo').owlCarousel(); }); $('.leftbar-bottom').slimScroll({ height: $(window).height()-$(".leftbar-top").height()-$(".leftbar-middle").height() -70 }); $('.leftbar-bottom').slimScroll().bind('slimscroll', function(e, pos){ if(pos=='bottom'){ $(".leftbar-shadow-bottom").hide(); } else{ $(".leftbar-shadow-bottom").show(); } }); }) //左侧悬浮初始代码 $(window).scroll(function() { var s_top = $(window).scrollTop(); if (s_top >39) { $(".leftbar").css("top","0"); } else{ $(".leftbar").css("top","80px"); } }); </script> <script type="text/javascript" src="//static.eewimg.cn/news/mp/static/js/show.js"></script> <script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script")[0],eewurl="//counter.eeworld.com.cn/pv/count/";a.async=1;a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,230)</script> <script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script")[0],eewurl="//counter.eeworld.com.cn/pv/count/";a.async=1;a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,282)</script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?be3bc9c3c86768710dfa8bd1c27239cf"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); if(eew_uid){ var ref_s = referer_from_website(); sensors.track('articleViewDetail',{ referSource: document.referrer, contentID: document.location.toString(), contentTitle:'汽车软件开发自动化测试攻略', keywords:'', contentChannel:'电子头条', platform:'Web', referSourceName:ref_s, contentIntro:$(".newscc").text().replace(/\s+/g,' ').substr(0,1500) }); } </script> <script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script")[0],eewurl="//counter.eeworld.com.cn/pv/count/";a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,519)</script> </body> </html>