测试之家
  • 社区
  • 问答
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • 注册
  • 登录
会员
xiaoj (YueChen)
第 7758 位会员 / 2016-03-07
11 篇帖子 • 239 条回帖
139 关注者
4 正在关注
28 收藏
打赏支持
GitHub Public Repos
  • py-ios-device 736

    IOS Professional Performance Testing Tool . You can get CPU, GPU, Memory , Lifecycle and other m...

  • ios-screen-record 211

    About A python based Apple Quicktime protocol,you can record audio and video from real iOS devices

  • java-ios-device 24

    A Java based Apple instruments protocol,you can get CPU, Memory and other metrics from real iOS d...

  • mobile-gui 15

    使用 pyqt5 编写Android, iOS 手机命令控制工具。

  • goreplay 1

    GoReplay is an open-source tool for capturing and replaying live HTTP traffic into a test environ...

  • Dopamine2-roothide 0

    Dopamine is a semi-untethered jailbreak for iOS 15 and 16

  • undetected-chromedriver 0

    Custom Selenium Chromedriver | Zero-Config | Passes ALL bot mitigation systems (like Distil / Imp...

  • pytest-xdist 0

    pytest plugin for distributed testing and loop-on-failures testing modes.

  • usbmuxd 0

    A socket daemon to multiplex connections from and to iOS devices

  • jacoco 0

    :microscope: Java Code Coverage Library

More on GitHub
  • 個人信息
  • 個人專欄
  • 帖子
  • 回帖
  • 收藏
  • 正在關注
  • 關注者
  • python 调用 jar 包加载 class 的时候始终抛错,折腾了很久,求帮忙解决 at 2019年12月13日
    JClass = jpype.JClass('test.test')
    instance = JClass()
    result = instance.add(1, 2)
    print result
    
  • [求助] appium 多设备同时运行获取 webview handle 报错:An unknown server-side error occurred while processing the command. Original error: disconnected: unable to connect to renderer at 2019年12月13日

    两个手机 webview 版本不同? 给 chromedriver 的 options 启动参数分配不同端口

  • fiddler 工具抓包,安卓手机上,浏览器访问百度之类的网页都可以抓到,但 APP 的数据就没有抓到。 at 2019年12月09日

    有的 App 抓不到,很有可能是 App 自己开了证书强校验,双向验证什么的,可以先了解下 ssl pinning

  • 使用 Chromedriver 测试打包后的 electron 应用 at 2019年12月09日

    1.Selenium 启动参数加个 --no-sandbox
    2.electron 壳如果用了 remote-debugging-port 给注释掉
    试一下看看

  • Appium 从 native 切换到 webview 页面失败,提示:Failed to start Chromedriver session: An error occurred (Original error: chrome not reachable) at 2019年12月06日

    有个简单的方法把 所有 Chromedriver 版本都下载下来
    appium 初始化 desired capability 的时候增加一个 chromedriverExecutableDir 参数 指向你存放所有 Chromedriver 版本的路径,它会自己选择的

    连接 http://appium.io/docs/en/writing-running-appium/web/chromedriver/#chromedriverchrome-compatibility

  • Android+Appium 点击 webview 当中的元素时,提示找不到元素 at 2019年12月06日

    先试试 chrome inpect 是否能调试 Android webView,用 chrome 拾取元素标记。如不能调试多半是开发没有开启 APP webView 调试权限
    webView.setWebContentsDebuggingEnabled(true);
    要是没开的话,你切不到 webview 也操作不了。

  • appium + ios 真机运行时不断闪退重启 at 2019年11月19日

    感觉上是 Appium 和 wda 版本匹配不上了,依赖出现了问题,手动把手机里的删了,用 Appium 自带的 wda 编译吧 。

  • appium + ios 真机运行时不断闪退重启 at 2019年11月19日

    贴日志,不能让人猜啊

  • 并发多设备运行 appium 脚本时怎么实现自动启动 appium 服务 at 2019年11月12日

    mac 想启动命令行窗口可以使用这种方式

    os.system("""osascript -e 'tell application "Terminal" to do script "appium -p {}"'""".format(port))
    
  • 并发多设备运行 appium 脚本时怎么实现自动启动 appium 服务 at 2019年11月12日

    如果用的 appium-python-client 库,里面有自带的启动 appium 方法 用法:

    from appium.webdriver.appium_service import AppiumService
    service = AppiumService()
    service.start(args=['--address', '127.0.0.1', '-p', '80'], timeout_ms=2000)
    service.stop()
    

    你也可以自己起个窗口 类似

    os.system('start appium -p {}'.format(port))
    
  • 如何让 appium 运行指定的驱动 at 2019年10月24日

    多看看文档http://appium.io/docs/en/writing-running-appium/caps/index.html 里面什么都有
    automationName=UiAutomator1

  • 用 Pytest+Appium+Allure 做 UI 自动化的那些事~(有点干) at 2019年10月17日

    ElementActions 自己二次封装的一些操作方法

  • allure 添加附件图片无法查看 at 2019年10月16日
    allure.attach(d.get_screenshot_as_png(),'baidu.png',attachment_type=allure.attachment_type.PNG)
    
  • allure 添加附件图片无法查看 at 2019年10月16日

    接收参数应该是 driver.get_screenshot_as_png() 返回图片数据, get_screenshot_as_file 返回值只有 True 和 False
    顺序应该还是要调换的

  • allure 添加附件图片无法查看 at 2019年10月16日

    'baidu.png',d.get_screenshot_as_file('baidu.png') 最新版的 allure-pytest 这两个参数位置交换下

  • appium 怎么自动匹配手机 webview 的驱动 at 2019年10月16日

    给你个官方链接,自己看看
    http://appium.io/docs/en/writing-running-appium/web/chromedriver/#chromedriverchrome-compatibility

    appium 初始化的时候增加一个 chromedriverExecutableDir 参数 指向你存放所有 Chromedriver 版本的路径,

  • 用 appium1.15 版本,装 wda 依赖的时候,总是安装失败,导致 wda 安装不上,求高手指点....必有重谢 at 2019年10月09日

    目录下面,直接

    > brew install carthage
    > carthage update 
    

    试下

  • Appium V1.8.0 重复安装 appium-uiautomator2-server-debug-androidTest.apk 和 appium-uiautomator2-server-v1.10.0.apk 的问题 at 2019年09月30日

    多看看官方文档

    'skipServerInstallation': True
    'skipDeviceInitialization': True
    

    针对已经安装的设备,这两个参数可以跳过 appium 初始化一些安装

  • 想在手机上随机生成 1000 万 个文件,怎么搞? at 2019年09月29日

    编译一个 Android 可执行文件在 Android 内部运行是不是要快些?

  • 求助:有哪位大神知道这个怎么解决吗? appium 启动 app 就启动不起来,报 Error: Cannot start the 'com.cloudmagic.magiclive' application... at 2019年09月12日

    启动的 appActivity 可能是错误的,用 monkey 运行一下看看启动 activity 是什么

  • Tcloud 云测平台 - 多服务框架开源 at 2019年09月10日

    功能很全面呀,赞一个

  • [新鲜出炉] Airtest 官方课程——自动化测试从入门到精通 at 2019年08月22日

    赞一个

  • 关闭 at 2019年08月22日

    百万大佬快跟上~

  • pytest 测试框架运行失败,提示 AttributeError: 'Function' object has no attribute 'get_marker' at 2019年08月22日

    如果你只是这样用的话,没必要 用 fixture
    直接
    def setup(self):
    def setup_class(self): 多好

  • appium 的 Inspector 有的详情页面无法打开,加上 desired_caps ["automationName"] = 'UiAutomator2'之后,就能正常显示。但是出现了另一个问题--->一些输入框无法 send_keys (只有有 id 属性的输入框,可以输入) at 2019年08月14日

    换了 UiAutomator2 之后不应该不是 ID 属性才能输入,而是只有当元素为 android.widget.EditText 类型的时候才可以输入。

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

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