`
文章列表
函数原型:range(start, end, scan): 参数含义:start:计数从start开始。默认是从0开始。例如range(5)等价于range(0, 5);              end:技术到end结束,但不包括end.例如:range(0, 5) 是[0, 1, 2, 3, 4]没有5              scan:每次跳跃的间距,默认为1。例如:range(0, 5) 等价于 range(0, 5, 1)   range的类型:Python 2.x range() produced a list, and xrange() returned an it ...
        先贴一段自己测试的代码,是用Python的dictionary实现的一个Hashmap。(Hash的实现方式以后再研究)     class HashC(): def new(self, num_buckets=256): """Initializes a Map with the given number of buckets.""" aMap = [] for i in range(0, num_buckets): aMap.append([]) return aMap ...
    # -*- coding: utf-8 -*- #pythonmain.py ###这段代码的主要作用主要是让该python文件既可以独立运行,也可以当做模块导入到其他文件### ###当导入到其他的脚本文件的时候,此时__name__的名字其实是导入模块的名字,不是'__main__', main代码里面的就不执行了### def test(): print("test function.") if __name__ == '__main__': print("main") test()   # ...
  Excel是32位,不管操作系统是32位还是64位,MYSQL的Connector也要用32位的。 http://stackoverflow.com/questions/9818365/vba-mysql-issue-using-odbc-connector   MYSQL Connector 5.3.4下载 http://dev.mysql.com/downloads/connector/odbc/
概览: 如何导入maven项目至eclipse中 建立自有Maven  Java类库服务器 建立符合maven代码库标准的自定义类库 Maven在管理Java类库方面有巨大的优势,像白衣所说就是非常“环保”。 我们平时用IDE开发都是把所需要的类库一股脑的全丢到项目目录下,然后全部添加到ide的构建路径中,如果用了SVN/CVS,这样会很容易就 把这些庞大的类库提交到代码库中,如果是j2ee项目,光类库可能就有百兆,严重影响checkout速度,如果是远程开发就不敢想象了。而引入 maven来管理依赖,就可以很好的控制依赖项的版本,并且项目中不存在具体依赖lib,只有对于 ...

百度MTC

  百度云 MTC 具有深厚的自动化测试技术积累,为移动开发者提供全自动云测试服务,覆盖200多款主流厂商的Android 移动设备及百余款增强模拟器,方便开发者进行实时的手机应用测试工作,并且可提供按需获取测试服务;开发者可针对不同需求,选择不同测试模式,例如全面兼容性测试、快速兼容性测试、遍历测试等。   为什么使用MTC   对开发者而言, MTC 的意义在于可以解决 Android 设备碎片化问题,大幅降低测试难度,测试设备成本降至0、缩短开发周期。 开发者可以利用该服务最快可在十分钟内完成上百种主流手机环境下的自动化测试,其中包括深度性能测试、全面兼容测试、十渡遍历测 ...

云平台

GAE、BAE、SAE、TAE、CAE、ACE、EC2、AZURE各种云,另外还有七牛,JAE,DevStore等。   有人亲测与使用过这三个云应用平台,对使用过程中的体会与碰到的问题跟大家分享一下。 最终还是选择了GAE,因为他主要是使用Javascript,考虑绑定域名与管理问题。 1.GAE不要备案就可以绑定域名,Goolge提供强大的apps for business工具,方便维护多个应用。2.SAE不备案要路由到国外,备案后才能正常使用,亲测试后发现路由到国外经常访问不了,就算能访问那速度也让人抓狂。3.BAE虽然可以不路由到国外,但是不备案域名不负责任,给人一种很不爽的感 ...
数据库服务名 该参数是oracle8i新引进的。在8i以前,我们用SID来表示数据库的一个实例,但是在Oracle的并行环境中,一个数据库对应多个实例,这样就需要多网络服务名,设置繁琐。为了方便并行环境中的设置,引进了service_name参数。 该参数对应一个数据库,而不是一个实例,而且该参数有许多其它的好处。 该参数的缺省值为db_name.db_domain,即等于global_name.如果数据库有域名,则数据库服务名就是全局数据库名;否则,数据库 服务名与数据库名相同。一个数据库可以对应多个service_name,以便实现更灵活的配置。该参数与SID没有直接关系,即 ser ...
  Q: How do I save objects to a shared repository? When I use Object Spy it always saves objects to the local repository. Is there a way to save directly to a shared repository? If not, is there a way to easily move them from the local repository to a shared repository. I know about exporting local ...

UFT API Testing Toolbox

    博客分类:
  • UFT
 大家都觉得有框架是很COOL的事情,但是框架里做多了,反而觉得麻烦。 其实UFT API Testing内置了很多有用的功能,已经是非常强大了。    
Motivation One of the main competitive advantages of HP Unified Functional Testing (UFT) is its wide support for different technologies. In fact this is probably my most reused PowerPoint slide:         But even after supporting all of these technologies (and more), there are always technolo ...
UFT integration with JENKINS With now CI (Continuous Integration) being the talk of the organizations who are differentially focused on Agile Methodology, It requires Automation Testing to be integrated with the CI environment. A recent article I read mentioned that dev build verification need not ...
Factor 1- IBM RFT can be extended to use the open source tools in case of the limitations in RFT. Few open source tools to name – Selenium, FlexMonkium. While UFT provides no such option to use it in combination with other open source tools using direct mechanism. Hence in a situation where a ...
  1. Add a Combo Box from Form Controls   2. Format the Combo Box   3. Done     
  sDate = Format(Date, "dddd dd") & Mid("thstndrdth", (DatePart("d", Date) Mod 10) * 2 + 1, 2) & " " & Format(Date, "mmmm yyyy") Example - Saturday 21st August 2010   MonthName(3) would return 'March' MonthName(3, TRUE) wo ...
Global site tag (gtag.js) - Google Analytics