测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • 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
  • 个人信息
  • 专栏
  • 话题
  • 回帖
  • 收藏
  • 关注中
  • 关注者
  • 单独使用 STF 中的 adb connect 功能 at 2019年03月16日

    可以的,一个设备一个端口

  • MAT: 深入探讨远程真机的 python 实现以及开源 at 2019年03月14日

    现在推广的怎么样了?

  • IOS 配置 WebDriverAgent 出现问题 at 2019年03月14日

    688 还好,暂时我垫付,回头再看好不好报销。总比卡在那里进行不下去强啊

  • IOS 配置 WebDriverAgent 出现问题 at 2019年03月14日

    我也遇到这个问题了,一恼火,先买个开发者证书试试

  • Appium 中的一个新功能——ScreenshotsBroadcaster at 2019年03月11日

    appium 的 mjpeg-server 貌似也存在屏幕旋转不对的问题

  • iOS 远程真机方案整理 at 2019年03月11日

    Python+OpenCV 手写了一个播放器。速度大约延时 80ms 的样子

  • iOS 远程真机方案整理 at 2019年03月11日

    刚试了是,这个功能是很不错。看来 Appium 把 WDA 改了很多。FBConfigration.m 有一些默认值

    因为我是用的模拟器,启动完之后,http://localhost:9100 就是那个 MJPEG 的 Server 地址。

    另外记录下 mjpeg 读取的一些库

    • NodeJS 版 https://www.npmjs.com/package/mjpeg-reader
    • Python 版 (很古老的版本)https://github.com/derpston/mjpegc/blob/master/mjpegc.py
    • MJPEG 协议介绍 https://blog.csdn.net/wengchen123/article/details/51578710

    帧率如果不修改的话默认就是 10,暂时还没发现有什么播放器可以看 mjpeg 的流

  • iOS 远程真机方案整理 at 2019年03月11日

    send_keys 不需要元素定位,那个 mjpeg 方案你说的再详细点

  • iOS 远程真机方案整理 at 2019年03月11日

    输入有 send keys 接口

  • iOS 远程真机方案整理 at 2019年03月10日
    - (NSData *)fb_screenshotWithError:(NSError*__autoreleasing*)error
    {
      Class xcScreenClass = objc_lookUpClass("XCUIScreen");
      if (nil == xcScreenClass) {
        NSData *result = [[XCAXClient_iOS sharedClient] screenshotData];
      // 中间省略 ...
    
      // The resulting data is a JPEG image, so we need to convert it to PNG representation
      UIImage *image = [UIImage imageWithData:result];
      return (NSData *)UIImagePNGRepresentation(image);
    }
    

    只修改最后一行,原来是 PNG 压缩的改成 JPEG,压缩精度设置为 0.1

    - (NSData *)fb_screenshotWithError:(NSError*__autoreleasing*)error
    {
      Class xcScreenClass = objc_lookUpClass("XCUIScreen");
      if (nil == xcScreenClass) {
        NSData *result = [[XCAXClient_iOS sharedClient] screenshotData];
      // 中间省略 ...
    
      // The resulting data is a JPEG image, so we need to convert it to PNG representation
      UIImage *image = [UIImage imageWithData:result];
      return (NSData *)UIImageJPEGRepresentation(image, 0.1);
    }
    
  • iOS 远程真机方案整理 at 2019年03月09日

    经过了我一通乱改,fps 已经从 5 升到 10 了

  • ATX 群资金流公示 at 2019年03月03日

    后面懒得写了,感觉不好玩就不记了

  • 每天上班时间两个小时,6 点下班 8 点才到家,现在要不要换份工作 at 2019年02月20日

    可以每天路上看 4 个小时书了哎

  • 使用 Python 库 facebook-wda 完成网易云音乐 iOS 客户端的自动化测试 (示例) at 2019年02月20日

    可以的呀

  • testerhome 只能用邮箱登录 at 2019年02月14日

    也可以用 github 登录呀

  • 单独使用 STF 中的 adb connect 功能 at 2019年02月07日

    nodejs 没装好

  • 请问有没有同学把 ATX-server 部署在云服务器上的经验? at 2019年01月25日

    需要手机服务器网络可以互通

  • 一款腾讯都在使用的自动化测试-QTA at 2019年01月25日

    加油。我好像记得发过一次的

  • 所有你经历过的,必然只留下最好的 —— 我的 2018 at 2019年01月24日

    彼此彼此

  • Selenium 打开百度,搜索 Hello World,然后截图 at 2019年01月22日

    我也才刚开始学,你就当成我自己的学习笔记好了

  • python 中的异步实践与 tornado 应用 at 2019年01月19日

    asyncio 用来写服务端程序还是很好的

  • [支持] STF 最新版支持安卓 9.0 吗?有人连接成功过吗? at 2019年01月19日

    看实现应该支持的

  • atx-server 安卓集群管理 安装运行及自动化的实践 at 2019年01月19日

    ip 前面加上--server

  • u2.app_info (),有些 app 会报错,有些 app 正常返回 at 2019年01月18日

    来个 apk 的地址,我给作者报个 bug

  • 如何处理 APP 自带的不定时弹窗问题,比如不定时弹出广告,给个思路就行 at 2019年01月17日

    每 3 秒钟 dump hierarchy 一次,检查有没有弹窗,有就处理掉

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

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