移动自动化测试
文章平均质量分 59
cajan2
这个作者很懒,什么都没留下…
展开
-
Python系列视频教程: Django【13讲】第一讲 Django安装
Python系列视频教程: Django【16讲】 http://down.51cto.com/zt/4091/1 Django book 2.0 的中文翻译。 http://djangobook.py3k.cn/2.0/ 中谷 Python Django 教程 http://www.tudou.com/plcover/27e6koAtzTo/转载 2014-02-12 08:39:02 · 2684 阅读 · 0 评论 -
adb坏了 找不到设备
adb坏了 找不到设备 现象,两台pc电脑,都是xp系统,一台已经找不到adb devices,另外一台是好的; 第一台机器可以找到安装了老android的手机,就是找不到安装了android4.4的手机。 在device manager里面,看得到端口和android Composite ADB interface都是正常的。 1. 必须更新版本 for android4.4 kitka原创 2014-02-17 11:07:39 · 1172 阅读 · 0 评论 -
ruby路线图
整理下ruby的书,把放公司里的ruby中文书籍都翻了下。 《programming ruby》,《应用Rails进行敏捷Web开发》,《ruby for rails》,《the ruby way》,《ruby cookbook》,《rails cookbook》。 总体评价下吧。 初学ruby和rails的话,前两本刚好够用的。一本讲解ruby,一本讲解rails转载 2013-12-23 10:53:41 · 875 阅读 · 0 评论 -
html5学习笔记
标准被广泛支持 RIA的利器,已经取代了flash和flex 功能很强大 html+css3+javascript api 支持audio播放,video播放 支持动画,2D游戏等等; 支持语音识别,图像识别原创 2014-06-14 09:40:42 · 920 阅读 · 0 评论 -
javascript编码调试环境-ide和调试工具
notepad++ 4个为 JS 开发者准备的 Notepad++ 插件 JSLint JSMin JSON Viewer RegEx Helper aptana eclipse plugin http://download.aptana.com/studio3/plugin/install Spket原创 2014-06-14 09:40:02 · 3585 阅读 · 0 评论 -
python ide-PyCharm
1.PyCharm 开始提供免费开源的社区版本 http://www.oschina.net/news/44520/pycharm-opensource 2.Download PyCharm http://www.jetbrains.com/pycharm/download/ New to PyCharm? Getting Started wi转载 2014-01-27 15:54:46 · 925 阅读 · 0 评论 -
Python之六-Django
Python之六-Django Django approach --URLs decoupled from code high-level python web framework MTV installation Python 2.5+ DB:PostgreSQL,MySQL,SQLite3 Python DB Interface:psycopg,MySQ原创 2014-02-12 08:36:54 · 1404 阅读 · 0 评论 -
easy install和setuptools
python的模块怎么安装呢? 我这里主要是讨论在windows下面的安装 有些安装包需要administrator权限,所以我找到了easyinstall和setuptools https://pythonhosted.org/setuptools/easy_install.html#downloading-and-installing-a-package 先unins原创 2014-02-12 08:37:49 · 889 阅读 · 0 评论 -
python之四-OO PYTHON
1.class class name: ""documentation" statements or class name(base1,base2,...): ... Most, statements are method definitions: def name(self,arg1,arg2,...): May also be class var原创 2014-02-12 22:08:42 · 822 阅读 · 0 评论 -
测试人的家-各种测试资源汇集
www.testerhome.com http://www.diggerplus.org/ http://www.taobaotest.com/原创 2014-03-01 13:35:26 · 740 阅读 · 0 评论 -
virtualenv碰到的问题
1.pip install 2.pyshared不能被virt原创 2014-05-13 10:53:35 · 1603 阅读 · 0 评论 -
web测试中的界面测试用例设计
Web测试中的界面测试用例设计转载 2014-05-26 20:56:52 · 2502 阅读 · 0 评论 -
python之三-statements and functions
1.if if condiction1 and condition2: action1 elif condition3: action2 else: action3 ,>=,==,!=,in x=2;y=3;L=[0,1,2] if (1y>=2) or (1==1or o!=1) or 1 in L: print 'Hello world' 2.whi原创 2014-02-12 22:08:24 · 767 阅读 · 0 评论