myshuangwaiwai

2017年6月16日

Charles几个常用测试功能小结

摘要: Charles应该是目前最常用的代理软件(之一),使用简单。Charles强大的抓包与协议调试代理功能可以满足我们大部分需求,居然还免费(我可没说有破解版)。日常测试中,我吗常用的几个功能主要是抓取网络请求,查看协议内容,修改请求与响应,另外断点功能以及过滤功能也很实用。简单总结下,各位老鸟请无视, 阅读全文

posted @ 2017-06-16 09:06 myshuangwaiwai 阅读(1980) 评论(0) 推荐(0) 编辑

2016年9月30日

Appium学习笔记(一)--安装与配置

摘要: 移动自动化测试常用工具有两个:Appium和Robotium。正好最近自己开始负责客户端的工作,初来乍到需要熟悉下环境,正好学习新的东西。 移动自动化相对web来说,原理与操作过程是一样的,通过自动化测试框架实现测试。略有不同的是,移动需要一点Android与iOS基础,难度大一点。 Appium官 阅读全文

posted @ 2016-09-30 11:11 myshuangwaiwai 阅读(246) 评论(0) 推荐(0) 编辑

2016年9月8日

google软件测试之道--读后笔记

摘要: 看完google软件测试之道,以前有认真看过一次,今天又重新看了一遍。 在google,测试人员严格区分为SET和TE。SET前期深度参与项目的开发,推动开发人员的自测,从破坏者的角度寻找各种bug,通过开发各种测试工具来提高工作效率。TE则在后期项目被确立后参与进来,从用户的角度去平衡开发与需求。 阅读全文

posted @ 2016-09-08 09:53 myshuangwaiwai 阅读(407) 评论(0) 推荐(0) 编辑

2016年9月6日

Web测试中常见分享问题

摘要: Web测试中,由于开发通常指注重完成H5页面的逻辑功能,对各种系统、浏览器等考虑不周,同时Android端各类机型碎片化,容易产生兼容性问题,这其中以分享类型为最。 本文简单分析总结一些测试中发现的问题。 首先考虑,对于H5页面,分为PC端和移动端,移动端又有iOS与Android。同时,Andro 阅读全文

posted @ 2016-09-06 14:50 myshuangwaiwai 阅读(193) 评论(0) 推荐(0) 编辑

2016年7月30日

730工作总结

摘要: 工作已有三周,先进行下简单总结。 在测试过程中,最重要的就是沟通,所有的点一定要沟通好确认没问题,不能放过任何细节,这里面最重要的就是交互稿。交互稿决定了这个产品的原型,也是整个开发与测试的核心所在,正确理解交互稿中的点才能保证产品质量。任何模糊的地方都需要与开发、交互沟通好,确定可行性以及是否已经 阅读全文

posted @ 2016-07-30 15:01 myshuangwaiwai 阅读(154) 评论(0) 推荐(0) 编辑

2015年8月16日

Java源码分析系列

摘要: 1)深入Java集合学习系列:HashMap的实现原理2)深入Java集合学习系列:LinkedHashMap的实现原理3)深入Java集合学习系列:HashSet的实现原理4)深入Java集合学习系列:LinkedHashSet的实现原理5)深入Java集合学习系列:ArrayList的实现原理 阅读全文

posted @ 2015-08-16 22:30 myshuangwaiwai 阅读(128) 评论(0) 推荐(0) 编辑

2015年7月29日

LeetCode 21 -- Merge Two Sorted Lists

摘要: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 1 publi... 阅读全文

posted @ 2015-07-29 17:35 myshuangwaiwai 阅读(129) 评论(0) 推荐(0) 编辑
LeetCode 20 -- Valid Parentheses

摘要: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in the c... 阅读全文

posted @ 2015-07-29 17:04 myshuangwaiwai 阅读(128) 评论(0) 推荐(0) 编辑
LeetCode 15 -- 3Sum

摘要: Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers.... 阅读全文

posted @ 2015-07-29 15:28 myshuangwaiwai 阅读(135) 评论(0) 推荐(0) 编辑

2015年7月28日

LeetCode 11 -- Container With Most Water

摘要: Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of ... 阅读全文

posted @ 2015-07-28 17:10 myshuangwaiwai 阅读(151) 评论(0) 推荐(0) 编辑