测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
管理员
chenhengjie123 (陈恒捷)
第 605 位会员 / 2014-03-16
字节跳动 @ 广州
157 篇帖子 • 5507 条回帖
1442 关注者
17 正在关注
101 收藏
人与人的差距取决于工作、睡觉之外的8个小时!
打赏支持
GitHub Public Repos
  • vue-testcase-minder-ed... 103

    基于百度脑图的用例编辑器组件,支持记录测试结果

  • gs-rest-service 5

    Building a RESTful Web Service :: Learn how to create a RESTful web service with Spring.

  • JavaSpringMvcBlog 5

  • ffmpeg-go 1

    golang binding for ffmpeg

  • ws-qvh 0

    Server for streaming the screen of iOS devices over WebSocket.

  • goav 0

    Golang bindings for FFmpeg (This repository is no longer maintained)

  • gmf 0

    Go Media Framework

  • quicktime_video_hack 0

    Record iOS device audio and video

  • ws-scrcpy 0

    Web client prototype for scrcpy.

  • ChuanhuChatGPT 0

    GUI for ChatGPT API

More on GitHub
  • 个人信息
  • 专栏
  • 话题
  • 回帖
  • 收藏
  • 关注中
  • 关注者
  • 用 inspector 无法识别一个 app 界面控件信息 (之前可以识别) at 2016年05月19日

    同一个界面,用 uiautomatorviewer 可以获取不?

  • appium 的 Python 版中,使用 WebDriverWait。。。until。。。做元素等待,报参数个数错误 at 2016年05月19日

    #8 楼 @jh901011 赞~

  • 怎样使 appium +python 连接多设备 (真机) 同时运行? at 2016年05月19日

  • 可以 @ 的补全菜单里找到全站的用户 at 2016年05月19日

    #9 楼 @gaopeng1106 额,你是不是误会了?恒温的意思是可以在 @ 的补全菜单里找到全站的用户。

  • 可以 @ 的补全菜单里找到全站的用户 at 2016年05月19日

    #4 楼 @lihuazhang 周末弄下。

  • 可以 @ 的补全菜单里找到全站的用户 at 2016年05月19日

    #8 楼 @lihuazhang 这个是 by design 的。。。加了用户名排版不大好看。

  • appium 的 Python 版中,使用 WebDriverWait。。。until。。。做元素等待,报参数个数错误 at 2016年05月18日

    #3 楼 @jh901011 忽略 1 楼,请看 2 楼的

  • 提供一个自动获取安卓 desired_caps 信息的方法和简化 SDK 方法 at 2016年05月18日

    #7 楼 @gaofating 再次强调,没有大神。。。

  • appium 的 Python 版中,使用 WebDriverWait。。。until。。。做元素等待,报参数个数错误 at 2016年05月18日

    #1 楼 @chenhengjie123 我错了,应该不是这个问题。不知道你的 presence_of_element_located 是怎么 import 的?能不能把完整的代码贴上来?

    我直接用官网的示例是没问题的:

    #!/usr/bin/env python
    # -*- coding: utf-8 -*-
    
    
    from selenium import webdriver
    from selenium.webdriver.common.by import By
    from selenium.webdriver.support.ui import WebDriverWait
    from selenium.webdriver.support import expected_conditions as EC
    
    driver = webdriver.Firefox()
    driver.get("http://testerhome.com")
    try:
        element = WebDriverWait(driver, 10).until(
            EC.presence_of_element_located((By.ID, "navbar-header"))
        )
    finally:
        driver.quit()
    

    PS:麻烦正文用 markdown 排版。。。

  • appium 的 Python 版中,使用 WebDriverWait。。。until。。。做元素等待,报参数个数错误 at 2016年05月18日

    示例里面的 wait 是来自 selenium.webdriver.support.ui 的,和你的不一样。

    from selenium.webdriver.support.ui import WebDriverWait
    
  • [烧脑巨作,不容错过] 像 hacker 一样思考 at 2016年05月18日

    涨知识了

  • Appium for mac (android 版) 从 0 到 0.8 过程记录 --appium girls 北京活动个人总结 at 2016年05月18日

    赞~有收获、有总结、有分享,看到 Appium Girls 活动能帮到众多妹子真是太好啦。

  • DUBBO,RMI 接口测试中,关于真实对象和构造的对象比较问题 at 2016年05月18日

    可以试试 测试开发之路 ---- 可读性,可维护性,可扩展性 里提到的责任链模式,自己实现一个。

  • 为什么 appium inspector 不能打开手机呢,一直提示无法连接服务器 at 2016年05月18日

    把 Appium server 完整的 log 输出贴上来。不要截图,直接复制粘贴文字。

    我感觉你截图里面的 log 并不是包含出错信息的 log 。

  • WebDriverAgent 简介 at 2016年05月18日

    #20 楼 @wenshi11019 给个具体界面截图吧?

  • 接口测试提前介入和自动化测试 at 2016年05月17日

    额,想问下上下文是啥?

  • WebDriverAgent 简介 at 2016年05月17日

    #17 楼 @wenshi11019 你说的是自绘控件吧?这个没试过。你有确定用了这类控件的 app 不?我可以装上试试

  • KIF 在真机上进行截图踩坑小记 at 2016年05月17日

    #5 楼 @heminwon 可以的

  • 提供一个自动获取安卓 desired_caps 信息的方法和简化 SDK 方法 at 2016年05月17日

    通过了。

    PS:package name 和 app-activity 的获取方法你可以看看 appium 的实现。当你没给这两个参数时,它会通过解析 apk 文件自动获取这两个参数。

  • 参加 Appium girls 北京活动总结 at 2016年05月17日

    #4 楼 @fengyiwen 相关教程可以看这里:https://www.gitbook.com/book/anikikun/appium-girls-tutorial/details

  • 提供一个自动获取安卓 desired_caps 信息的方法和简化 SDK 方法 at 2016年05月17日

    分享是好的。但麻烦使用 markdown 。

    不会用的话可以看 排版说明 。好文章应该配上好的排版~

  • 关于 Inspector 无法启动问题的处理思路 at 2016年05月17日

    #5 楼 @wyb199026 其实那是个输入框,你可以把 9.3 输进去的。

  • 静态代码扫描 (一)——PMD 自定义规则入门 at 2016年05月17日

    正文不要出现公众号的二维码吧

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

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