测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
会员
emily (叶子)
第 2218 位会员 / 2014-12-30
16 篇帖子 • 114 条回帖
22 关注者
6 正在关注
24 收藏
打赏支持
未设置 GitHub 信息.
  • 个人信息
  • 专栏
  • 话题
  • 回帖
  • 收藏
  • 关注中
  • 关注者
  • iOS-客户端代码覆盖测试 (Gcov) at 2023年02月15日

    请教一下,我生成的.info 文件里 SF:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.1.sdk,这个是通过什么成生的呢,在生成 html 报告的时候总说找不到这行,因为我没有装 OS16.1 的 sdk,我装了 15.0,在哪儿能修改这个设置呢

    我自己有的路径
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.0.sdk

  • android 异步单测无法执行到异步返回的内容,且线程一直处于阻塞状态 at 2019年07月19日

    用 CountDownLatch 阻塞当前的线程

  • android 异步单测无法执行到异步返回的内容,且线程一直处于阻塞状态 at 2018年03月30日

    好的,好的,我去了解一下 espresso,非常感谢

  • 大家都是怎么实现 android 异步接口测试的呢 at 2018年03月29日

    知道是什么问题吗:https://testerhome.com/topics/12596

  • 大家都是怎么实现 android 异步接口测试的呢 at 2018年03月29日

    CountDownLatch 阻塞,一直等待,不出来啊

  • 大家都是怎么实现 android 异步接口测试的呢 at 2018年03月26日

    你这个方法可行性不高,你不知道加一个多久的 sleep 合适,如果接口多,全部接口跑完之后得等多久才能出结果呢

  • 大家都是怎么实现 android 异步接口测试的呢 at 2018年03月26日

    嗯,我也在尝试线程阻塞的方法,但是总会报一个 java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare(),我的线程中没有用到 handler,怀疑是接口有问题,但是其它测试其它接口又一直处于卡死状态

  • [已解决] 如何对 APP 中的埋点数据进行自动化测试 at 2017年09月20日

    谢谢,很好,很强大,就它了

  • [已解决] 如何对 APP 中的埋点数据进行自动化测试 at 2017年09月20日

    好,我去看看,谢谢

  • [已解决] 如何对 APP 中的埋点数据进行自动化测试 at 2017年09月20日

    的确是看的不人少,确没有人回复,非常感谢,我也不希望通过 UI 层自动化来实现,我了解一下你说的东西,我没用过神策

  • [已解决] 如何对 APP 中的埋点数据进行自动化测试 at 2017年09月20日

    谢谢回复,这的确是一个解决方法,但考虑到目前两端未实现 UI 自动化,这样的话就需要为了测试埋点而先完成两端自动化,工程量太大时间不允许,也不具有两端通用必

  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月23日

    #17 楼 @sanlengjingvv
    这个是 tap

    info: [debug] [INST] 2016-03-23 02:36:50 +0000 Debug: Got new command 6 from instruments: target.touch([{"touch":[{"x":160,"y":90}],"time":0.2},{"touch":[{"x":160,"y":90}],"time":0.22}])
    
  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #15 楼 @chenhengjie123

    //这样click不行
    driver.findElement(By.xpath("//UIAApplication[1]/UIAWindow[1]/UIAScrollView[1]/UIAButton[1]")).click();
    //这样tap(60, 420)就可以
    driver.findElement(By.xpath("//UIAApplication[1]/UIAWindow[1]/UIAScrollView[1]/UIAButton[1]")).tap(60, 420);
    

    这是为什么

  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #13 楼 @chenhengjie123 需要怎么 debug 呢,都需要查检什么?我也怀疑是环境总是,但该装的我都装了呀,而且 app 也能起来

  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #11 楼 @chenhengjie123 刚试了 java-client-3.3.0.jar 和 java-client-3.2.0 还是不行

  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #3 楼 @achilles_z 我跑官方https://github.com/appium/sample-code/tree/master/sample-code/examples/java/junit/src/test/java/com/saucelabs/appium

    里的 SimpleTest 所有的事件都会报上边那个错,应该和 visible 没有关系,我看官方的 app visible 属性也是 false,而且开发说 IOS 的 button 里没有这个属性

  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #2 楼 @chenhengjie123 我刚跑了一下 appium sample code 里的 sample TestApp 也报一样的错,而且我看官方的 demo 也 visible 属性也是 false

  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #6 楼 @huanzhijin 为什么要用坐标点呢?通过 Name 定位到不是直接就可以点击了

  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #2 楼 @chenhengjie123
    没有输出什么 error 信息

  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #3 楼 @achilles_z IOS 的 button 没有 visible 这个属性

  • [已解决] MAC 真机运行 appium 执行 click 时报 org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #1 楼 @huanzhijin 所有的点击方法都试了,应该不是,刚刚 @ 鱼说了一个可能的原因:btn2 的 visible 是 false,我看了的确是 false

  • [已解决] Mac 真机运行 appium 测试报 org.openqa.selenium.SessionNotCreatedException: A new session could not be created. (Original error: Instruments crashed on startup) (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #2 楼 @test_auto 我没有试 android

  • [已解决] Mac 真机运行 appium 测试报 org.openqa.selenium.SessionNotCreatedException: A new session could not be created. (Original error: Instruments crashed on startup) (WARNING: The server did not provide any stacktrace information) at 2016年03月22日

    #1 楼 @neyo 这个无所谓了

  • 运行测试类时报错:org.openqa.selenium.WebDriverException: undefined status object (WARNING: The server did not provide any stacktrace information) at 2016年03月21日

    这个问题解决了吗?我也遇到这样的问题,如果解决了,麻烦分享一下

  • iOS 真机运行 Appium 长期答疑! at 2016年03月21日

    #27 楼 @xuxiujin 这个问题解决了吗?运行时也报

    org.openqa.selenium.SessionNotCreatedException: A new session could not be created. (Original error: Instruments crashed on startup) (WARNING: The server did not provide any stacktrace information)
    Command duration or timeout: 44.86 seconds
    Build info: version: '2.53.0', revision: '35ae25b', time: '2016-03-15 16:57:40'
    System info: host: 'zhangdeiMac.local', ip: '10.xxx.3.236', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.11.3', java.version: '1.8.0_40'
    Driver info: io.appium.java_client.ios.IOSDriver
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:422)
    
    
  • 1
  • 2
  • 3
  • 4
  • 5
  • 下一页
  • 关于 / 活跃用户 / 中国移动互联网测试技术大会 / 反馈 / Github / API / 帮助推广
    TesterHome社区,测试之家,由众多测试工程师组织和维护的技术社区,致力于帮助新人成长,提高测试地位,推进质量发展。Inspired by RubyChina
    友情链接 WeTest腾讯质量开放平台 / InfoQ / 掘金 / SegmentFault / 测试窝 / 百度测试吧 / IT大咖说
    简体中文 / 正體中文 / English

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