2016年11月29日

摘要: 转自:http://blog.csdn.net/oracle_microsoft/article/details/5689585 SoapUI 是当前比较简单实用的开源Web Service 测试工具,提供桌面应用程序和IDE 插 件程序两种使用方式。能够快速构建项目和组织测试用例是该工具的一大特性 阅读全文
posted @ 2016-11-29 11:07 NorthernGirl 阅读(194) 评论(0) 推荐(0) 编辑
 
摘要: 转自:http://testerhome.com/topics/1043 1、关于没有name,没有ID的元素的定位 通用篇解题思路:因为没有name,id;其实剩下的选择已不多,要么xpath,要么className。xpath木有好印象(稳定性不高,加之1.0x后需要写全路径,相当崩溃),我决定 阅读全文
posted @ 2016-11-29 11:02 NorthernGirl 阅读(225) 评论(0) 推荐(0) 编辑

2016年11月16日

摘要: 一、操作变量:通过使内置对象vars可以对变量进行存取操作 a) vars.get("name"):从jmeter中获得变量值 b) vars.put("key","value"):数据存到jmeter变量中 二、操作属性:通过使用Bean shell内置对象props 可以对属性进行存取操作 a) 阅读全文
posted @ 2016-11-16 15:16 NorthernGirl 阅读(426) 评论(0) 推荐(0) 编辑
 
摘要: 一:日期控件 selenium不能直接对日期控件操作,可以通过js对日期控件做赋值操作 WebElement inputTimeBox=driver.findElement(by.name("###")); //定位日期控件 Stringtime = "2015/10/10"; ((Javascri 阅读全文
posted @ 2016-11-16 15:07 NorthernGirl 阅读(1006) 评论(0) 推荐(0) 编辑

2016年11月9日

摘要: 接口测试包括: get、post、delete、put 不同接口类型的差异 提交方式:post 是以表单形式提 请求数据大小 安全性 接口测试流程 阅读全文
posted @ 2016-11-09 18:27 NorthernGirl 阅读(141) 评论(0) 推荐(0) 编辑
 
摘要: appium 安装和python 安装好后。 1. 启动android模拟器--Genymotion-点击Start 2. 启动appium 3. 运行代码。 阅读全文
posted @ 2016-11-09 11:16 NorthernGirl 阅读(597) 评论(2) 推荐(1) 编辑

2016年11月8日

摘要: my_name = 'Zed A. Shaw'my_age = 35 # not a liemy_height = 74 # inchesmy_weight = 180 # lbsmy_eyes = 'Blue'my_teeth = 'White'my_hair = 'Brown'print "Le 阅读全文
posted @ 2016-11-08 14:45 NorthernGirl 阅读(126) 评论(0) 推荐(0) 编辑

2016年11月4日

摘要: Emmagee 是一个性能测试小工具 用来监控指定被测应用在使用过程中占用机器的CPU, 内存,流量资源的性能小工具 Emmagee 介绍 Emmagee是网易杭州研究院QA团队开发的一个简单易上手的Android性能监测小工具,主要用于监控单个App的CPU,内存,流量,启动耗时,电量,电流等性能 阅读全文
posted @ 2016-11-04 09:35 NorthernGirl 阅读(159) 评论(0) 推荐(0) 编辑

2016年10月25日

摘要: 因为要进行自动化测试,所以要搭建Python开发环境.这里将使用Eclipse+pyDev进行搭建,在此作为笔记记录下来. 需要的组件: 1.Eclipse SDK 3.7(这里将不再叙述Eclipse的安装步骤) 2.python--下载地址:http://www.python.org/getit 阅读全文
posted @ 2016-10-25 10:07 NorthernGirl 阅读(147) 评论(0) 推荐(0) 编辑

2016年10月20日

摘要: 一、开发环境 二、创建一个project package cn.testfan.test_selenium; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium 阅读全文
posted @ 2016-10-20 14:15 NorthernGirl 阅读(407) 评论(0) 推荐(0) 编辑