自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

doctorq

路漫漫其修远兮

  • 博客(35)
  • 资源 (26)
  • 收藏
  • 关注

原创 swift-控制语句测试题答案

第一次作答(2014.7.30)/*1*/for n in 1...5 { println(n)}for n in ["gog","name","sex"]{ println(n)}for (index,value) in [1:"sdf",2:"sdd"]{ println(index)}for chars in "n

2014-07-30 22:37:59 1499

原创 swift-集合测试题答案

第一次作答(2014.7.28)/*1*/var dict:Dictionary = [1:"name",2:"age",3:"sex"]var dict1 = [1:"class",2:"company",3:"address"]/*2*/dict.count/*3*/dict[4] = "salary"dict.updateValue("hobby", forKe

2014-07-29 00:13:01 2057

原创 swift-数组测试题答案

/*数组的三种定义方式*/var floatList:Array = [1.0,2.0,3.0]var floatList1 = [1.2,3.2,3.4]var floatList2:Float[] = [1.2,3.4,3.4]/*添加单个元素或者合并两个数组*/floatListfloatList+=1.2floatList+=floatList2/*取单个、多

2014-07-27 23:03:39 1874

原创 swift-自测题

数组数组的定义

2014-07-27 22:34:58 2178

原创 appium之java API(2)

TouchActionAppiumDriver的辅助类,主要针对手势操作,比如滑动、长按、拖动等。TouchAction的原理是讲一系列的动作放在一个链条中,然后将该链条传递给服务器。服务器接受到该链条后,解析各个动作,逐个执行。press(WebElement el)在控件上执行press操作。press(int x, int y)在坐

2014-07-22 19:49:55 2959

原创 Appium之java API

AppiumDrivergetAppStrings()默认系统语言对应的Strings.xml文件内的数据。driver.getAppStrings(String language)查找某一个语言环境对应的字符串文件Strings.xml内数据sendKeyEvent(int key)按下某个键,具体哪个键由key值决定,ke

2014-07-22 18:55:35 6394

原创 Selenium之偷懒教程

进来一直停留在基础理论知识的学习中,觉得太乏味,就写了一个网页自动化的demo:自动写日报。省的以后自己打开网页写啦。直接上代码:自动填写日报DEMOimport java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFound

2014-07-22 15:04:20 2415

原创 bootstrap之MultiPointerGesture

MultiPointerGesture

2014-07-20 15:20:27 2657

原创 bootstrap之UpdateStrings

UpdateStringspackage io.appium.android.bootstrap.handler;import io.appium.android.bootstrap.AndroidCommand;import io.appium.android.bootstrap.AndroidCommandResult;import io.appium.android.bo

2014-07-20 11:10:50 1804

原创 bootstrap之DumpWindowHierarchy

DumpWindowHierarchypackage io.appium.android.bootstrap.handler;import android.os.Environment;import com.android.uiautomator.core.UiDevice;import io.appium.android.bootstrap.AndroidCommand;i

2014-07-19 17:38:50 4849 1

原创 bootstrap之PressKeyCode&&LongPressKeyCode

PressKeyCodepackage io.appium.android.bootstrap.handler;import com.android.uiautomator.core.UiDevice;import io.appium.android.bootstrap.AndroidCommand;import io.appium.android.bootstrap.Andr

2014-07-19 17:22:43 2966 1

原创 bootstrap之Wake&&PressBack&&TakeScreenshot&&OpenNotification

Wakepackage io.appium.android.bootstrap.handler;import android.os.RemoteException;import com.android.uiautomator.core.UiDevice;import io.appium.android.bootstrap.AndroidCommand;import io.ap

2014-07-19 17:07:17 2024

原创 bootstrap之ScrollTo

ScrollTopackage io.appium.android.bootstrap.handler;import com.android.uiautomator.core.UiObject;import com.android.uiautomator.core.UiObjectNotFoundException;import com.android.uiautomato

2014-07-19 16:56:52 3416

原创 bootstrap之GetName&&GetAttribute&&GetDeviceSize&&GetSize&&GetLocation&&GetDataDir

GetNamepackage io.appium.android.bootstrap.handler;import com.android.uiautomator.core.UiObjectNotFoundException;import io.appium.android.bootstrap.*;import org.json.JSONException;/** * T

2014-07-19 16:28:29 2333

原创 bootstrap之文本框的操作

getTextsetText

2014-07-19 15:55:58 12774

原创 bootstrap之鼠标操作

TouchLongClickpackage io.appium.android.bootstrap.handler;import android.os.SystemClock;import com.android.uiautomator.common.ReflectionUtils;import com.android.uiautomator.core.UiObjectNotFound

2014-07-19 15:43:15 4687

原创 bootstrap之Pinch

Pinch

2014-07-18 20:03:59 2235

原创 bootstrap之Drag

Dragpackage io.appium.android.bootstrap.handler;import com.android.uiautomator.core.UiDevice;import com.android.uiautomator.core.UiObjectNotFoundException;import io.appium.android.bootstrap.

2014-07-18 17:22:44 3556

原创 bootstrap之Flick

Flickpackage io.appium.android.bootstrap.handler;import com.android.uiautomator.core.UiDevice;import io.appium.android.bootstrap.*;import io.appium.android.bootstrap.exceptions.InvalidCoordi

2014-07-18 16:39:14 2209

原创 bootstrap之Swipe

Swipe我定义为滑动,但它字面的意思又不是,事件的形式类似于小时候拿着一块石头片,朝水面飞过去,如果你手法可以那么就是swipe走的路线,如果你手法不行,接触水面的时候就没再飞起来那就会被人嘲笑的。package io.appium.android.bootstrap.handler;import com.android.uiautomator.core.UiDevi

2014-07-18 15:21:45 3486

原创 bootstrap之Orientation

Orientation调整屏幕方向的操作。package io.appium.android.bootstrap.handler;import android.os.RemoteException;import com.android.uiautomator.core.UiDevice;import io.appium.android.bootstrap.*;

2014-07-18 14:48:16 2967

原创 bootstrap之WaitForIdle&&Clear

(上篇文章写完才发现,说好的按顺序但是回头一看完全不是按顺序的)明明WaitForIdle才是第一个。哎,老了,后脑勺不行了。WaitForIdlepackage io.appium.android.bootstrap.handler;import com.android.uiautomator.core.UiDevice;import io.appium.andro

2014-07-18 10:53:28 2977

原创 bootstrap之Click事件

上一篇文章中讲了bootstrap的工作流程,这篇文章来研究一下bootstrap可以接受哪些指令(从源码的角度来看,由于appium的项目现在还处在持续更新中,所以有的指令已经实现,某些或许未来会实现,从源码来看的好处是你知道以后或许未来appium能做到哪些功能)。在bootstrap项目中的io.appium.android.bootstrap.handler包中的类都是对应的相

2014-07-18 10:13:47 11316 1

原创 appium框架之bootstrap

(闲来无事,做做测试..)

2014-07-17 20:19:47 11943 5

原创 Swift实战(2)-基础知识

2014-07-15 00:01:16 284

原创 mac上安装node

命令行模式下直接执行ruby -e "$(curl -fsSkL https://raw.github.com/Homebrew/homebrew/go/install)"

2014-07-13 22:34:40 1279

原创 Swift实战(1)-helloworld

环境的配置这儿就不将啦,自己去百度或googlesou sou

2014-07-13 19:05:05 1298

翻译 Swift语言官方文档翻译(6)-Collection Types

Collection Types

2014-07-11 16:03:53 2020

翻译 Swift语言官方文档翻译(5)-Strings and Characters

Strings and Characters

2014-07-10 16:22:46 2102

原创 adb shell input event

作用:向设备发送按键事件

2014-07-08 16:50:39 3904

翻译 Swift语言官方文档翻译(4)-Basic Operators

Basic Operators操作符是一种检查、操作、组合值的特殊的符号或短语。比如将两个值相加(let i = 1 + 2)的加号(+)。更复杂的比如逻辑与(&&)、自增(++i:表示给i加上一个1后返回)。Swift支持大多数标准C的操作符,而且为了消除错误增加了一些功能。赋值操作符(=)

2014-07-04 11:24:08 1572

原创 Error starting command: monkey --port 12345 卡死的问题

Error starting command: monkey --port 12345 com.android.ddmlib.ShellCommandUnresponsiveException

2014-07-04 09:53:44 5364

翻译 Swift语言官方文档翻译(3)-The Basics

The Basics

2014-07-02 23:27:19 2376

原创 uiautomatorviewer中的Error taking device screenshot错误

2014-07-02 09:47:46 14612 5

原创 AdbChimpDevice创建时空指针错误

错误的原因是在创建AdbChimpDevice初始化时,

2014-07-01 14:21:35 2480

go依赖包golang.org/x下的所有源码

go语言依赖包,为不方便下载的同学,提供便利。因为经常被墙,所以直接下载这个就可以了。

2018-05-04

php-hbase-thrift

php访问hbase时,采用thrift的方式,编译了thrift和thrift2两套代码

2016-12-19

streamingpro

streamingpro项目依赖

2016-10-25

ServiceFrameworkDispatcher

streamingpro项目依赖jar包

2016-10-25

apk加固demo

APK加固demo,详细讲解http://blog.csdn.net/itfootball/article/details/50962459

2016-03-23

利用BroadcastReceiver自动回拨电话

在自动化测试过程中,有时需要测试接电话的case,该apk就是辅助的工具

2015-01-08

tradefederation.rar

cts支持jar包tradefed-prebuild.jar的源码项目

2014-10-17

javalib-deviceutil.jar

cts-tradefed-host支持jar包

2014-10-17

javalib-deviceinfo.jar

cts-tradefed-host支持jar包

2014-10-17

hosttestlib.jar

cts-tradefed-host支持jar包

2014-10-17

tradefed-prebuilt.jar

cts-tradefed-host支持jar包

2014-10-17

ddmlib-prebuilt.jar

cts-tradefed-host支持jar包

2014-10-17

window下启动cts的批处理文件

http://blog.csdn.net/itfootball/article/details/40044953

2014-10-17

smtp.jarformail

mailapi.jar的依赖jar包,如果没有该jar包,会报错

2014-07-22

32位系统的IE驱动

32位系统下,selenium启动IE的必备驱动。

2014-07-22

mailapi.jar

发送邮件的jar包,sun公司推出的原始jar包

2014-07-22

selenium-server-standalone-2.42.2.jar

selenium-webdriver开发依赖的jar包

2014-07-22

wifi工具类app

用命令行模式启动一个app,获取其启动时间的。但是该app会造成卡死状态

2014-06-30

playground

swift的playground,可以编写代码以及立即查看结果

2014-06-16

uiautomator2junit

将uiautomator的输出日志转化为xml的文件格式,方便在网页上展现出来

2014-06-09

hockeyapp环境搭建文档

自己总结的一篇hockeyapp环境搭建文档

2014-06-07

uiautomator-stub

jsonrpc所需jar之一,配合bundle.jar两者一起可以开启jsonrpc的服务器

2014-06-07

hockeyappforandroid

hockeyapp for android搭配环境时所需jar包,3.0.1版本

2014-06-07

bundle.jar

jsonrpc中所用到的服务器类的支持jar包。

2014-06-04

pythonforandroid_r4.apk

该apk为scripting layer for android的支持apk。安装在设备上,进行python脚本的编写

2014-05-29

Espresso-test-jar

Espresso测试框架的jar包,包含所有api文档

2014-04-01

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除