测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
会员
codeskyblue (codeskyblue)
第 6853 位会员 / 2016-01-11
Alibaba Inc @ 杭州
148 篇帖子 • 1356 条回帖
786 关注者
6 正在关注
61 收藏
打赏支持
GitHub Public Repos
  • gohttpserver 2681

    The best HTTP Static File Server, write with golang+vue

  • go-sh 1123

    like python-sh, for easy call shell with golang.

  • tidevice3 241

    wrapper for pymobiledevice3 to make it more easy to use.

  • uiautodev 220

    Mobile UI viewer in browser, view the UI in a tree view, and generate XPath automatically.

  • servefs 30

    file server written with python(fastapi), which support upload,delete,preview,edit

  • sshg 7

    ssh client with quick search and remote config

  • imutils2 4

    another imutils for opencv simple use

  • wereadtopdf 3

    各类书籍转pdf 仅供研究学习

  • fidb 2

    forwarded service for iPhone (fidb forward <localPort> <devicePort> )

  • android-common 2

    Android Common Utils or Helper. Such as Log, Averager, Base64, Check, FlashLight, KeyguardLock, L...

More on GitHub
  • 个人信息
  • 专栏
  • 话题
  • 回帖
  • 收藏
  • 关注中
  • 关注者
  • WebDriverAgent 踩坑记 at 2016年07月12日

    #29 楼 @chenhengjie123 可是平常使用的话,也都是边翻文档,边写 case 呀,除了 PO,还有什么东西,不遵守这个命名规范,所遗失的。
    另外,我也同意看得懂比效率更重要,毕竟看得懂很重要,而且以后维护还需要经常用呢,可函数名长了未必就好懂呀

  • 这样神奇的代码该怎么理解呢? at 2016年07月12日

    找本 python 的书翻翻

  • WebDriverAgent 踩坑记 at 2016年07月12日

    #27 楼 @chenhengjie123 只是另一种形式而已,不打算改成 appium 的格式,我无意去喷 appium 的形式,函数名太长,而我平常又是一位不喜欢用自动补全的人,那么长的函数名,简直是要死人了。

  • 这样神奇的代码该怎么理解呢? at 2016年07月12日

    少贴点东西吧 def open 上面应该还有东西的

    @property
    def open(self)
        ...
    

    python 的一些特殊的方法而已

  • 请教:Appium 运行速度慢,有没有提高运行速度的方法 at 2016年07月12日

    如果是测试的 iOS 已经没有优化的可能了,因为 python 每次和 UIAutomation 通信的时间最低是 1s,如果算上数据从 UIAutomation 传递回 Python 的时间,最少也要 2s。这是因为 UIAutomation 的一个函数 performTaskWithTimeout 这个函数慢的缘故,facebook 曾加对 xcode6, xcode5 做过优化,xcode7 的时候,facebook 就不在维护那个优化过的库了

  • WebDriverAgent 踩坑记 at 2016年07月12日

    @chenhengjie123 也不算是从零开始,参考了下 https://github.com/xiaocong/uiautomator 这种方式比较 pythonoic

  • WebDriverAgent 踩坑记 at 2016年07月12日

    https://github.com/codeskyblue/python-wda 点击 Element,以及键盘输入,还不知道具体的步骤,求助下

  • WebDriverAgent 踩坑记 at 2016年07月11日

    #22 楼 @lihuazhang 好的

  • WebDriverAgent 踩坑记 at 2016年07月10日

    @gogle USB 通信你是怎么做的,方便说下吗?

  • [基于 Node.js 的自动化测试-Macaca] - 原来程序员都是这么聊天的 at 2016年07月08日

    xdf 好高产呀

  • WebDriverAgent 踩坑记 at 2016年07月08日

    #16 楼 @chenhengjie123 你这两个都是啥,怎么用

  • WebDriverAgent 踩坑记 at 2016年07月08日

    请教个问题,跑起来 WebDriverAgent 必须在 Mac 上吗? 还必须用 xcodebuild 吗?还有那个 USB Support 该怎么用?

  • WebDriverAgent 踩坑记 at 2016年07月08日

    #15 楼 @chenhengjie123 thank you very much, it works.

  • appium+python 如何隐藏安卓键盘 at 2016年07月08日

    #3 楼 @terrychow 这个比 appium 那个输入法好用。

  • WebDriverAgent 踩坑记 at 2016年07月07日

    WDA 怎么才能 tap 一个坐标呢,而不是 tap 一个元素

  • appium+python 如何隐藏安卓键盘 at 2016年07月07日

    换输入法 https://github.com/macacajs/android-unicode

  • [公告] Macaca 技术开放计划 at 2016年07月06日

    膜拜

  • [基于 Node.js 的自动化测试-Macaca] - Android 输入中文的实现 at 2016年07月06日

    发现个问题,输入 中文cn没问题,但是输入不了带空格的 中文 cn

  • [基于 Node.js 的自动化测试-Macaca] - Android 输入中文的实现 at 2016年07月06日

    啊,我知道了,原来是这个样子。 比如 中middle 转化成 utf7 编码,就是 +Ti0-middle, 所以安装完 android-unicode.ime 那个输入法,只要 adb shell input text +Ti0-middle 可以输入成 中middle 了

  • [基于 Node.js 的自动化测试-Macaca] - Android 输入中文的实现 at 2016年07月06日

    @xdf 我其实比较想知道下是怎么实现的,看看能不能集成到 AutomatorX 这个项目中,应该输入法最近我也很头疼。

  • [基于 Node.js 的自动化测试-Macaca] - Android 输入中文的实现 at 2016年07月05日

    比如想输入 中文 这两个字该怎么输入呢?

  • [基于 Node.js 的自动化测试-Macaca] - Android 输入中文的实现 at 2016年07月05日

    @xdf 这个输入法该怎么用呢?可以命令行用吗?比如用 adb shell 命令之类的

  • [基于 Node.js 的自动化测试-Macaca] - 获取 Android 应用的性能 at 2016年07月04日

    结合 TencentGT http://gt.qq.com 是不是要好点,只是提个想法

  • [基于 Node.js 的自动化测试-Macaca] - 获取 Android 应用的性能 at 2016年07月01日

    虽然说功能听完善的,Nodejs 我也用了段时间,但总感觉拿它写测试用例,感觉怪怪的

  • 请问怎么识别验证码图片呢? at 2016年06月30日

    也不一定非要用代码识别呀,人工有时也是可以考虑的

  • 上一页
  • 1
  • 2
  • 3
  • …
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 下一页
  • 关于 / 活跃用户 / 中国移动互联网测试技术大会 / 反馈 / Github / API / 帮助推广
    TesterHome社区,测试之家,由众多测试工程师组织和维护的技术社区,致力于帮助新人成长,提高测试地位,推进质量发展。Inspired by RubyChina
    友情链接 WeTest腾讯质量开放平台 / InfoQ / 掘金 / SegmentFault / 测试窝 / 百度测试吧 / IT大咖说
    简体中文 / 正體中文 / English

    ©testerhome.com 测试之家   渝ICP备2022001292号
      渝公网安备 50022202000435号    版权所有 © 重庆年云聚力信息技术有限公司