• 个人理解:
    前台流量:是应用在前台运行即用户使用过程中消耗的流量;
    后台流量:是应用在后台运行时所消耗的流量;
    流量测试中,除了被测应用,有一些后台的应用也会消耗流量。

  • 《我们仨》——杨绛先生 at 2016年12月19日

    已拿到,感谢分享。左手边的小伙伴~

  • 已经付款~ 上次没去成,希望这次能够参加~

  • TesterHome 北京神秘专场 at 2015年11月23日

    报名。我猜是 monkey👏

  • 期待北京有更多的会可以参加~

  • @lihuazhang 提个小建议可以吗?
    关注某人之后,能收到他发表的回复等所有信息。
    我认为,大家关注的是他发表的帖子,如果他给他人的回复全部提醒给我,信息量过于多。
    能否在此逻辑上做个修改?

  • 1、你运行 “appium-doctor” 的结果是否通过?
    2、你的 jdk 路径是否存在中文?

  • @alex_sheng @lihuazhang 每拿到一本新书,都与自己进行一个约定,两周或更长时间看完,那么看下书的页数,除以天数,约束自己每天看的页码,基本上都会把书看完,除非特别晦涩难懂的需要时间长点。从别处学来的经验,自己也在践行当中。

  • info: --> POST /wd/hub/session/8265b651-40cf-cb83-2919-28e85c16ffd4/element/d2246795-7cf1-6cc8-8834-
    a1db4ceddfcf/click {"id":"d2246795-7cf1-6cc8-8834-a1db4ceddfcf"}
    info: [debug] Proxying command to localhost:8080
    info: [debug] Making http request with opts: {"url":"http://localhost:8080/wd/hub/session/8265b651-4
    0cf-cb83-2919-28e85c16ffd4/element/d2246795-7cf1-6cc8-8834-a1db4ceddfcf/click","method":"POST","json
    ":{"id":"d2246795-7cf1-6cc8-8834-a1db4ceddfcf"}}
    info: [debug] Proxied response received with status 200: {"value":"","status":0,"sessionId":"8265b65
    1-40cf-cb83-2919-28e85c16ffd4"}
    info: <-- POST /wd/hub/session/8265b651-40cf-cb83-2919-28e85c16ffd4/element/d2246795-7cf1-6cc8-8834-
    a1db4ceddfcf/click 200 637.581 ms - 74
    info: --> POST /wd/hub/session/8265b651-40cf-cb83-2919-28e85c16ffd4/touch/perform {"actions":[{"acti
    on":"press","options":{"x":75,"y":200}},{"action":"wait","options":{"ms":1000}},{"action":"moveTo","
    options":{"x":80,"y":800}},{"action":"release","options":{}}]}
    info: [debug] Proxying command to localhost:8080
    info: [debug] Making http request with opts: {"url":"http://localhost:8080/wd/hub/session/8265b651-4
    0cf-cb83-2919-28e85c16ffd4/touch/perform","method":"POST","json":{"actions":[{"action":"press","opti
    ons":{"x":75,"y":200}},{"action":"wait","options":{"ms":1000}},{"action":"moveTo","options":{"x":80,
    "y":800}},{"action":"release","options":{}}]}}
    info: [debug] Proxied response received with status 404: undefined
    info: <-- POST /wd/hub/session/8265b651-40cf-cb83-2919-28e85c16ffd4/touch/perform 404 47.564 ms - -
    

    现在出现的这个问题,可能是由于我执行 swipe 方法导致的,谁遇到过相同的?
    我的代码:

    driver.findElement(By.id("main_rbtn_course_me")).click();
    Thread.sleep(1000);
    driver.swipe(75, 200, 80, 800, 1000);//
    driver.findElement(By.id("user_exit_btn")).click();
    }