
软件测试
文章平均质量分 50
Gavinsun
自由、分享
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Windows下如何查看android中指定APP的log日志
需要的工具:DDMS、ADB 工具位置: DDMS在SDK的tools文件夹下, ../tools/ddms.bat ADB在SDK的platform-tools文件夹下,../platform-tools/adb.exe 建议为ADB设置环境变量,这样你可以在任何cmd目录下执行adb相关命令 使用方法: 1.连接手机,手机中启动一个叫gavin的app(这个a原创 2015-09-16 17:32:27 · 12211 阅读 · 0 评论 -
npm使用常见问题解答
如何查看npm配置?npm config list //查看基本配置 npm config list -l //查看所有配置npm本地安装与全局安装有什么区别?npm install grunt // 本地安装,则是将模块下载到当前命令行所在目录。 npm install -g grunt//全局安装,模块将被下载安装到【全局目录】中;npm如何获取全局安装的默认目录?npm config g原创 2016-05-23 17:39:17 · 7021 阅读 · 0 评论 -
Webdirver API (Python版)
Webdriver APIselenium.webdriver.remote.webdriver原创 2017-06-30 15:58:52 · 463 阅读 · 0 评论 -
什么是软件测试?
什么是软件测试?What does Software Testing mean?Software testing is a set of processes aimed at investigating, evaluating and ascertaining the completeness and quality of computer software. Software testing en原创 2017-08-04 17:35:08 · 1826 阅读 · 0 评论 -
黑盒测试
什么是黑盒测试?Black-box testing is a method of software testing that examines the functionality of an application without peering into its internal structures or workings. This method of test can be applied原创 2017-08-04 17:44:10 · 934 阅读 · 0 评论 -
Selenium3 简明教程(Python版)
环境准备 使用Windows操作系统; 安装Chrome和Firefox浏览器; 安装Pyhton 2.7.13 Selenium简介关于Selenium的简介和历史,请自行搜索。selenium安装在线安装:pip install selenium 离线安装:pip install 你下载的Selenium文件 selenium 下载地址:https://pypi.python.org/pyp原创 2017-06-30 12:00:44 · 17337 阅读 · 0 评论