Kagami-blog

kagamimoe


  • 首页

  • 分类

  • 归档

  • 标签

Appium使用过程中踩过的坑(一)

发表于 2017-06-25 | 分类于 测试

Appium使用过程中踩过的坑(一)

最近报名了网易云课堂的测试课程,在使用appium的过程中,踩到了不少坑,于是写了篇文章记录下。

1.appium 每次运行的时候 会重新安装两个app 一个是 appium setting 一个是unlock

解决方法: appium的目录下的android.js文件 注释掉以下代码

1
2
3
4
5
6
// this.initUnicode.bind(this),
// this.pushSettingsApp.bind(this),
// this.pushUnlock.bind(this),
function (cb) {this.uiautomator.start(cb);}.bind(this),
this.wakeUp.bind(this),
// this.unlock.bind(this),
阅读全文 »

Hello World

发表于 2017-05-24 | 分类于 杂谈

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"
阅读全文 »

常用Linux命令小结

发表于 2015-09-15 | 分类于 Linux

文件命令

–

  • ls – 列出目录
  • ls -al – 使用格式化列出隐藏文件
  • cd dir - 更改目录到
  • dircd – 更改到 home 目录
  • pwd – 显示当前目录
  • mkdir dir – 创建目录 dir
  • rm file – 删除 file
  • rm -r dir – 删除目录 dir
  • rm -f file – 强制删除 file
  • rm -rf dir – 强制删除目录 dir *
  • cp file1 file2 – 将 file1 复制到 file2
  • cp -r dir1 dir2 – 将 dir1 复制到 dir2; 如果 dir2 不存在则创建它
  • mv file1 file2 – 将 file1 重命名或移动到 file2; 如果 file2 是一个存在的目录则将 file1 移动到目录 file2 中
  • ln -s file link – 创建 file 的符号连接 link
  • touch file – 创建 file
  • cat > file – 将标准输入添加到 filemore file – 查看 file 的内容
  • head file – 查看 file 的前 10 行
  • tail file – 查看 file 的后 10 行
  • tail -f file – 从后 10 行开始查看 file 的内容
阅读全文 »

python中 join和split的使用

发表于 2015-08-11 | 分类于 Python

今天学习codecademy的python课程的时候,遇到了join和split的使用。一开始不知道用,后来google了一下才知道。

阅读全文 »

游戏交易模块的测试

发表于 2015-05-25 | 分类于 测试

交易模块向来是游戏众多功能模块中的重要功能,因为它直接关系到游戏的经济系统。笔者其实没有真正测试过交易模块,因为大部分页游和手游直接省去了交易模块,一方面是为了避免这个模块出问题,造成经济系统的崩溃(比如刷钱,刷装备等);二是加剧单机化,也防止了一些玩家通过申请一大堆小号来刷钱刷装备。我参考了一般游戏里交易的流程,写了下大概的测试功能点和框架,如果有不对或者需要补充的地方,大家可以在下面提出。

阅读全文 »

搬家啦

发表于 2015-05-24 | 分类于 杂谈

搬家啦

以前的博客正式迁移到github了,因为域名到期了 = = ,暂时没有闲钱续期。于是搬家到免费的github上了~

kagami

kagami

6 日志
4 分类
6 标签
© 2017 kagami
由 Hexo 强力驱动
主题 - NexT.Mist