测试之家
  • Topics
  • QA
  • 招聘
  • 社区学堂新
  • 开源项目
  • 活动
  • Wiki
  • Sign Up
  • Sign In
新手
Never_More (Never_More)
第 11427 位Users / 2016-08-31
3 篇帖子 • 28 条回帖
7 关注者
0 正在关注
14 收藏
打赏支持
未设置 GitHub 信息.
  • 个人信息
  • 专栏
  • 话题
  • 回帖
  • 收藏
  • 关注中
  • 关注者
  • 基于模型的测试 (Model-based Testing),希望大家能给一些建议 at May 16, 2019

    可以用指令先只执行模型图,确定模型图通过后再开始自动化测试

  • 基于模型的测试 (Model-based Testing),希望大家能给一些建议 at May 16, 2019

    没有 java 服务端的

  • 基于模型的测试 (Model-based Testing),希望大家能给一些建议 at March 13, 2019

    关于用例爆炸的问题,目前我们是在单体测试完成后做 MBT 测试,对单个控件就不会再测特殊输入或操作,然后再对大功能模块进行拆分,对复杂的小功能模块进行封装,尽量控制用例数量
    其它问题我就回答不了了,我也才接触 MBT 半年,只用到了一点皮毛

  • 基于模型的测试 (Model-based Testing),希望大家能给一些建议 at March 13, 2019
    1. 模型图生成用例是使用的 https://github.com/GraphWalker/graphwalker-project 这个项目的 jar 包,站在大佬的肩膀做事
    2. 目前在项目中的应用主要是在单体测试完成后,用来做流程测试和回归测试。相比于直接写脚本一是在操作上有随机性,会测出没有考虑到的操作流程,二是重复性工作比较少
    3. 脚本初步生成后,是需要人工补全元素定位,一个元素定位基本只需要写一次,所以工作量并不大,更重要的是模型图的设计
  • 基于模型的测试 (Model-based Testing),希望大家能给一些建议 at March 12, 2019

    这个好专业 💯

  • 基于模型的测试 (Model-based Testing),希望大家能给一些建议 at March 12, 2019

    是的

  • 请问 Python+iOS+appium 如何通过坐标点击屏幕? at January 04, 2017

    #5 楼 @TesterUp 可以试试按百分比来点击,我觉得比直接用坐标点击好,还解决了不同大小的屏幕的适配问题

  • 移动 APP 兼容性测试和功能测试关注点讨论 at December 07, 2016

    #2 楼 @goose 真机用 top 是什么意思

  • Appium Python 自动获取 Android 设备 id 和包名等信息 at December 01, 2016

    #15 楼 @neyo 试了一下,好像是这样😂 ,这就很尴尬了啊

  • Appium Python 自动获取 Android 设备 id 和包名等信息 at December 01, 2016

    #13 楼 @shixue33 因为还没到多设备的地步就一直没有多设备同时连接运行过,有时间尝试一下

  • Appium Python 自动获取 Android 设备 id 和包名等信息 at November 30, 2016

    #8 楼 @mads
    #9 楼 @shixue33
    我一直没有 uuid,没遇上过问题,就不知道,还以为只有 iOS 需要 uuid

  • Appium Python 自动获取 Android 设备 id 和包名等信息 at November 30, 2016

    #6 楼 @shixue33 uuid 是 iOS 的,iOS 之前看到个方法获得设备 uuid,找不到链接了,大概方法如下:

    import commands
    
    uuid = commands.getoutput('idevice_id -l')
    
    wd = webdriver.Remote(
        command_executor='http://127.0.0.1:4723/wd/hub',
        desired_capabilities ={
            'platformName' : 'iOS', 
            'platformVersion' :' 9.3 ',
            'deviceName' : 'iPhone 5s',
            'app':'xxxxxxxxxx',
            'udid': uuid
        })
    
  • Appium Python 自动获取 Android 设备 id 和包名等信息 at November 30, 2016

    #2 楼 @app_test 忘了这个了,需要配置一下 aapt 的环境变量

  • robotframework appiumlibrary 有没有一个判断 element 是否存在的方法 at November 24, 2016

    #4 楼 @si509429 现成的方法是什么?没有找到,求教

  • [求助] Appium 用 Python 用什么方法可以获得手机 IP at October 18, 2016

    #4 楼 @heyniu 没看懂, 这个需要什么库?

  • [求助] Appium 用 Python 用什么方法可以获得手机 IP at October 18, 2016

    #3 楼 @0x88 不知道有什么其他的库有方法查看到手机的 IP 啊,都是返回的电脑的 IP 地址

  • [求助] Appium 用 Python 用什么方法可以获得手机 IP at October 17, 2016

    #1 楼 @0x88 想在 appium 里获得,还是 appium 里可以跑 adb 吗?

  • 几道笔试题…… at October 10, 2016

    用 python 写一下,思路和 lucasluo 一样:

    for a in range(0, 21):
        for b in range(0, 34):
            for c in range(0, 100):
                if(a * 5 + b * 3 + c / 3.0 == 100 and a + b + c == 100):
                    print a, b, c
    

    结果:
    0 25 75
    4 18 78
    8 11 81
    12 4 84

  • iOS 真机运行 Appium 长期答疑! at September 21, 2016

    @fengytn
    终端输入:
    sudo chmod -R 777 /var/db/lockdown/

  • TesterHome「Hangzhou Tester Salon 2016」视频下载地址 at September 14, 2016

    17 分钟的视频 4 个 G,合适吗?

  • 请问大家实际测试环境使用的 appium 版本是哪个? at September 14, 2016

    1.5.3

  • iOS Monkey 测试方案 [大家可以通过 gem install smart_monkey 进行安装了] at September 03, 2016

    @vigossjjj iPhone 5s 真机
    /Users/NeverMore/.rvm/gems/ruby-2.3.0/gems/smart_monkey-0.5.0/lib/smart_monkey/monkey_doctor.rb:7: warning: Insecure world writable dir /usr/local/bin in PATH, mode 040777
    INSTRUMENTS_TRACE_PATH : /Users/NeverMore/Desktop/*.trace
    RESULT_BASE_PATH : /Users/NeverMore/Desktop/monkey_result
    {:app_path=>"com.tkdb.fastLemon", :device=>"1840cbec4c65506576cec375f0bd0cbea4ae767e", :result_base_dir=>"/Users/NeverMore/Desktop/monkey_result", :run_count=>1, :time_limit_sec=>nil, :detail_event_count=>50}
    =================================== Start Test (1/1) =======================================
    2016-09-03 10:19:25.889 instruments[7858:369474] WebKit Threading Violation - initial use of WebKit from a secondary thread.
    2016-09-03 10:21:10.414 instruments[7889:371012] WebKit Threading Violation - initial use of WebKit from a secondary thread.
    Attempting iOS device system log capture via deviceconsole.
    2016-09-03 10:21:11.980 instruments[7895:371062] WebKit Threading Violation - initial use of WebKit from a secondary thread.
    BundleID was found: com.tkdb.fastLemon
    Run: ["instruments", "-w", "1840cbec4c65506576cec375f0bd0cbea4ae767e", "-t", "/Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate\n/Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.xrplugin/Contents/Resources/Automation.tracetemplate", "com.tkdb.fastLemon", "-e", "UIASCRIPT", "/Users/NeverMore/Desktop/monkey_result/report_20160903101923/custom.js", "-e", "UIARESULTSPATH", "/Users/NeverMore/Desktop/monkey_result/report_20160903101923"]
    Instruments Usage Error: The specified template '/Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate
    /Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.xrplugin/Contents/Resources/Automation.tracetemplate' does not exist.
    instruments, version 7.3 (60134)
    usage: instruments [-t template] [-D document] [-l timeLimit] [-i #] [-w device] [[-p pid] | [application [-e variable value] [argument ...]]]
    Stop iOS system log capture.
    2016-09-03 10:21:34.460 instruments[7929:371628] WebKit Threading Violation - initial use of WebKit from a secondary thread.

    报错的:Instruments Usage Error: The specified template '/Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.bundle/Contents/Resources/Automation.tracetemplate
    /Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.xrplugin/Contents/Resources/Automation.tracetemplate' does not exist.

    这两个文件都有啊,求大神解答

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

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