摘要:
今天尝试在Jenkins上部署我们的自动化项目,用简单的登录用例来配置,然后我们项目(我自己随意写的)使用的是python+selenium, 在搭建好环境之后,构建的时候碰到了一个问题,就是一直提示找不到我自己定义的模块包,提示错误 ModuleNotFoundError: No module n 阅读全文
摘要:
Sub writelog(filepath,logstr) Const ForReading=1,ForWritting=2,ForAppdening=8 '创建文件 Dim fso,f Dim teststr Set fso=CreateObject("scripting.filesystemob 阅读全文
摘要:
map:处理序列中的每个元素,得到的结果是一个'列表',该列表元素个数及位置与原来一样 map(func, array) map:函数 num_l = [1,2,5,8,7,11,22,55] def map_test(func, array): ret = [] for i in num_l: r 阅读全文