测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
新手
qddegtya (Archer)
第 182 位会员 / 2013-11-11
16 篇帖子 • 309 条回帖
137 关注者
0 正在关注
154 收藏
{ '🌏 website': 'https://xiaoa.name' }
GitHub Public Repos
  • qddegtya.github.io 21

    💡 Colorful

  • a-docs 5

    :book: my favs

  • awesome-ng-tools 4

    🔧 awesome next-generation tools

  • ajs 4

    🪄 Just another javascript utility library used by other @qddegtya JS projects.

  • passport-ldap 4

    :key: LDAP authentication strategy for Passport and Node.js

  • qddegtya 3

    🎭 Use @atools/portrayal to intergrate with github workflow for auto-profile-updating.

  • llpage 2

    📜 Page operation model (in memory) with LRU & lifecycle strategy

  • astack 1

    🎉 The Production-Ready Open Source Framework For AI Applications.

  • isomorphic-channel 1

    📞 Isomorphic channel for Micro Frontends

  • w 1

    ✏️ Powerful Creative Workbench for Content Creator.

More on GitHub
  • 個人信息
  • 個人專欄
  • 帖子
  • 回帖
  • 收藏
  • 正在關注
  • 關注者
  • Java 中的设计模式:解决一个类在内存只存在一个对象。 at 2015年02月07日

    很赞,做技术的就要往下深挖,能收获很多意想不到的东西。

  • appium npm 镜像下载注意 at 2015年01月11日

    cnpm

  • chrome mobile emulation 及周边漫谈和相关应用+想法 at 2015年01月09日

    #19 楼 @yangeren 俗称 Hybrid,app 里的页面要想获得原生能力就要由原生 app 往 webview 里注入一段 js

  • 腾讯 APP 场测 / 随身测神器-GT at 2015年01月06日

    图形有吗?曲线图

  • 腾讯 APP 场测 / 随身测神器-GT at 2015年01月06日

    #25 楼 @fvaryu 你 gt 用了吗?对啊,测试结果数据以及相关图表

  • 关于 Appium 稳定性,使用 Appium 的进~ at 2015年01月06日

    楼上各种大神正解,我发表下观点,我在 ctrip 的时候,曾经一个部门努力提高自动化脚本的健壮性,不稳定是正常的,就算 appium 稳定了,自动化还是可能不稳定。

  • 腾讯 APP 场测 / 随身测神器-GT at 2015年01月06日

    #23 楼 @fvaryu 产品中没有固定的性能指标,需要结合业务来看,能否贴上数据和结果图??大家一起分析一下。

  • 数据分析 R 语言之基础图形绘制入门 at 2014年12月31日

    #14 楼 @seveniruby 的确如此~

  • 数据分析 R 语言之基础图形绘制入门 at 2014年12月30日

    我已经推荐很多人学习 R 语言了,现在暂时没有太多的精力去学 R,对于那些经常要跟数据打交道的测试人员来说,R 语言可以为你们增色不少,再者,上海这座金融如此发达的城市里,学会 R 语言可以让职业道路更加宽广吧~

  • 【杭州招聘】网易杭州研究院招聘高级 / 资深测试开发工程师 at 2014年12月29日

    #1 楼 @seveniruby 网易质量部的产出和成绩在圈内还是相当可以的。

  • 【求助】appium1.2.4 一直报错,一直无法运行 at 2014年12月23日

    从日志来看,提示原因是,匿名函数没有 stop 方法,追一下源码:

    androidHybrid.cleanupChromedriver = function (chromedriver, cb) {
      if (chromedriver) {
        logger.debug("Cleaning up Chromedriver");
        chromedriver.stop(function (err) {
          if (err) logger.warn("Error stopping chromedriver: " + err.message);
          this.restoreProxyState();
          cb();
        }.bind(this));
      } else {
        cb();
      }
    };
    

    往上追一下:

    Chromedriver.prototype.stop = function (cb) {
      logger.debug('Killing chromedriver');
      this.exitCb = cb;
      this.proc.kill();
    };
    

    再往上追

    this.onChromedriverStart = cb;
      logger.debug("Spawning chromedriver with: " + this.chromedriver);
      var alreadyReturned = false;
      var args = ["--url-base=wd/hub", "--port=" + this.proxyPort, "--adb-port=" + ADB.getAdbServerPort()];
      this.proc = spawn(this.chromedriver, args);
      this.proc.stdout.setEncoding('utf8');
      this.proc.stderr.setEncoding('utf8');
    
      this.proc.on('error', function (err) {
        logger.error('Chromedriver process failed with error: ' + err.message);
        alreadyReturned = true;
        this.shuttingDown = true;
        logger.error('Killing chromedriver');
        this.proc.kill();
        this.onDie();
      }.bind(this));
    

    能贴一下你的代码吗?

  • [探究解答] getAttribute 方法为何不支持参数为 index 问题帖的探究 at 2014年12月23日

    #6 楼 @lifreshman 从代码上来讲:_.contains(['label', 'name', 'value', 'values', 'hint'], attributeName) underscore 中的 contains 方法表示 list 中是否包含第二个参数,所以,除了这几个之外的,都会抛 “UIAElements don't have the attribute......”

  • webviewv36 支持的 Remote Debugging 特性以及与 appium 的关系 at 2014年12月23日

    #7 楼 @yangchengtest 看不懂说明不是你的问题,是我的问题。。。。。。

  • webviewv36 支持的 Remote Debugging 特性以及与 appium 的关系 at 2014年12月23日

    #5 楼 @oscar 欢迎大家补铁~

  • 切换 webview 模式,遇到 chromedriver 报错的问题 at 2014年12月23日

    Latest Release: ChromeDriver 2.13

    Fixed bugs:
    Chromedriver times out waiting for Tracing.end command to respond
    GoBack command times out on all platforms
    ChromeDriver port server fails to reserve port
    Commands goBack and goForward have race condition.
    chromedriver fails with "Chrome version must be >= 31.0.1650.59" on Android 4.4.3 webviews
    silence chrome logging by default on windows
    ChromeDriver fails to close DevTools UI before executing commands

    chromedriver 最新的 2.13 已经解决 fix 这个问题,直接到官网下载一个 2.13 的 chromedriver。

  • webviewv36 支持的 Remote Debugging 特性以及与 appium 的关系 at 2014年12月23日

    #1 楼 @lihuazhang 没错,webview 是个大话题,我暂且没有讨论 selendroid

  • webviewv36 支持的 Remote Debugging 特性以及与 appium 的关系 at 2014年12月23日

    #2 楼 @luis 是的,其实我文中只讨论了这一种情形~

  • chrome mobile emulation 及周边漫谈和相关应用+想法 at 2014年12月19日

    #17 楼 @anikikun 就是那一堆堆运营页面,如今,single page 遍地,继续深入研究,还会有更多干货产出。

  • chrome mobile emulation 及周边漫谈和相关应用+想法 at 2014年12月16日

    #14 楼 @seveniruby 透过现象看本质,往往能让测试少走很多弯路。

  • chrome mobile emulation 及周边漫谈和相关应用+想法 at 2014年12月16日

    #12 楼 @xie_0723 具体问题具体分析,仅此而已。这样,我们能够始终覆盖产品测试的方方面面

  • chrome mobile emulation 及周边漫谈和相关应用+想法 at 2014年12月16日

    #8 楼 @tobytang 拿这个跟真实设备比是不现实的,只能说,可以利用这种方法或者思路来获取必要价值

  • chrome mobile emulation 及周边漫谈和相关应用+想法 at 2014年12月16日

    #6 楼 @ansonwoo 当然,不过今年更新力度很小,团队内部考虑上线全新版本

  • chrome mobile emulation 及周边漫谈和相关应用+想法 at 2014年12月15日

    #4 楼 @tspring 正如我在文中提到的适用场景,其比较适合用于 h5 端移动 web 网站的测试,原生 app 的自动化测试是无法胜任的。

  • chrome mobile emulation 及周边漫谈和相关应用+想法 at 2014年12月15日

    #1 楼 @seveniruby 我把你补刀内容放到帖子里

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

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