测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
版主
Lihuazhang (恒温)
第 110 位会员 / 2013-10-21
阿里巴巴 @ 上海
405 篇帖子 • 7855 条回帖
2537 关注者
33 正在关注
33 收藏
人生很多事情你也已经经历了。从我们35岁开始,到60岁、70岁,也就是经历一些生老病死的日常事情。加油!
打赏支持
GitHub Public Repos
  • ai-agents-with-llama3 12

  • lihuazhang.github.com 9

    my blog

  • juit5-json-params 7

    juit5-json-params

  • MediaCrawler 1

    小红书笔记 | 评论爬虫、抖音视频 | 评论爬虫、快手视频 | 评论爬虫、B 站视频 | 评论爬虫、微博帖子 | 评论爬虫

  • javascript-algorithms 1

    Algorithms and data structures implemented in JavaScript with explanations and links to further r...

  • ahchoo 1

    test for cloudfoundry

  • AutoClick 1

    基于Robotium的自动遍历方案

  • UI-Testing-Cheat-Sheet 1

    How do I test this with UI Testing?

  • revolt-fx 0

  • letsmove 0

More on GitHub
  • 個人信息
  • 個人專欄
  • 帖子
  • 回帖
  • 收藏
  • 正在關注
  • 關注者
  • Appium 安卓环境的配置 at 2014年08月04日

    #14 楼 @meiyu 现在不需要了。

    Requirements
    iOS

    Mac OSX 10.7+
    XCode 4.5+ w/ Command Line Tools

    Android

    Mac OSX 10.7+ or Windows 7+ or Linux
    Android SDK ≥ 16 (SDK < 16 in Selendroid mode)

    如果 sdk 小于 16, 就会用 Selendroid 模式。

  • Adb-For-Test 使用 adb 命令实现元素定位等功能,用来辅助 android 测试 at 2014年08月02日

    歪楼高手啊…

  • appium 是否可以通过 content-desc 的值来识别元素呢 at 2014年07月31日

    #5 楼 @aster30 webview 里面就直接用 WebDriver 的 api 啊。

  • 【已解决】getAttribute 方法为何不支持参数为 index 呢? at 2014年07月31日

    那他就是没实现嘛。。。

  • 【已解决】getAttribute 方法为何不支持参数为 index 呢? at 2014年07月30日

    发帖看下发帖的帮助啊,别把代码发的和文本一样

  • Appium 如何创建多个 session,并且可以随意切换?主要为了测两个 App, 但是 App 之间有互动 at 2014年07月29日

    请注意发帖规范。

  • Calabash 的那些坑 at 2014年07月29日

    #2 楼 @noshuai ios 可以, android 不行。所以 android 和 ios 还是独立开来写自动化比较好

  • [已解决] Appium Setting.apk 和 Unlock.apk at 2014年07月29日

    #1 楼 @roicel 没有办法,代码里写死了。每次都会安装。

    Android.prototype.start = function (cb, onDie) {
      this.launchCb = cb;
      this.uiautomatorExitCb = onDie;
      logger.info("Starting android appium");
    
      if (this.adb === null) {
        this.adb = new ADB(this.args);
      }
    
      if (this.uiautomator === null) {
        this.uiautomator = new UiAutomator(this.adb, this.args);
        this.uiautomator.setExitHandler(this.onUiautomatorExit.bind(this));
      }
    
      logger.debug("Using fast reset? " + this.args.fastReset);
      async.series([
        this.prepareDevice.bind(this),
        this.packageAndLaunchActivityFromManifest.bind(this),
        this.checkApiLevel.bind(this),
        this.pushStrings.bind(this),
        this.processFromManifest.bind(this),
        this.uninstallApp.bind(this),
        this.installAppForTest.bind(this),
        this.forwardPort.bind(this),
        this.pushAppium.bind(this),
        this.initUnicode.bind(this),
        this.pushSettingsApp.bind(this), // 这里
        this.pushUnlock.bind(this), // 这里
        this.uiautomator.start.bind(this.uiautomator),
        this.wakeUp.bind(this),
        this.unlockScreen.bind(this),
        this.getDataDir.bind(this),
        this.startApp.bind(this),
        this.initAutoWebview.bind(this)
      ], function (err) {
        if (err) {
          this.shutdown(function () {
            this.launchCb(err);
          }.bind(this));
        } else {
          this.didLaunch = true;
          this.launchCb(null, this.proxySessionId);
        }
      }.bind(this));
    };
    
    
  • 开源中国推出专用无 bug 内裤,TesterHome 专用内裤在哪儿? at 2014年07月28日

    move to 灌水

  • appium 无法启动测试 at 2014年07月24日

    这个问题我都说过很多遍了。appium 的 sdk 路径里不允许有空格。

  • 移动端混合型 App (hybrid app) 自动化测试选型与实践 at 2014年07月24日

    #2 楼 @umbrella1978 1.5 坑很多吧?感觉都没经过检验

  • GetInfo-弱弱的发布一个之前说要做成 UI 的半成品 at 2014年07月24日

    #30 楼 @seveniruby 嗯 这个还是比较容易的。

  • GetInfo-弱弱的发布一个之前说要做成 UI 的半成品 at 2014年07月24日

    #27 楼 @seveniruby @shixue33 @qddegtya 做为 Milestone 2 吧。 目前代码实现的还不是很面向可插拔。

  • Appium-Python-Client 源码剖析 (一) driver 的元素查找方法 at 2014年07月24日

    我觉得你不讲下 WebDriver 的源码和机制,这个文章很快就讲不下去了。 比如 :

    return self._execute(Command.FIND_CHILD_ELEMENT,
                                {"using": by, "value": value})['value']
    

    execute 方法做了什么,
    Command 是什么

  • GetInfo-弱弱的发布一个之前说要做成 UI 的半成品 at 2014年07月24日

    #20 楼 @shixue33

  • GetInfo-弱弱的发布一个之前说要做成 UI 的半成品 at 2014年07月24日

    @ 几位老大,建议吸收 shixue 为 testerhome Github 管理员…

  • GetInfo-弱弱的发布一个之前说要做成 UI 的半成品 at 2014年07月23日

    能把代码放到 github 上去么?

  • 求助:使用 AppiumDriver 报错 java.lang.NoSuchMethodError: org.openqa.selenium.remote.ErrorHandler.<init>(Lorg/openqa/selenium/remote/ErrorCodes;Z)V at 2014年07月23日

    你不 @ 我,我就不告诉你。。 把 javaclient 回滚到 1.2.1

  • 大家一起来写本叫 Appium 中文教程的书!已迁移到 testerhome 组织底下 at 2014年07月22日

    大纲初稿已经确定

  • appium 是否可以通过 content-desc 的值来识别元素呢 at 2014年07月21日

    为什么没人看我的帖子呢。。 http://testerhome.com/topics/1034

  • R 语言处理 csv 的入门 demo at 2014年07月21日

    R 牛!看来我也得学习一把,做图形化数据不错

  • 代码报错。求大神帮忙 at 2014年07月17日

    #12 楼 @gigayaya 没关系, 0.0.0.0 应该是任意 ip。通常情况下,网络中所说的 0.0.0.0 的 IP 地址表示整个网络,即网络中的所有主机。

  • appium 启动测试失败 at 2014年07月17日

    没有人知道哪里出问题吧。

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

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