【问题标题】:Appium error handling doesn't workAppium 错误处理不起作用
【发布时间】:2018-10-07 03:01:10
【问题描述】:

我是 appium 的新手,所以可能会做错事。

我遇到了使用 wdio 和 jasmine 的 appium 问题

it('wtf', (done) => {
  client.init().element('someName').getText()
//                       ^ here was a mistake
    .then(result => result, err => {
//                          ^ this error handling wasn't work  
  throw new Error(`Cannot get text of element: #someName\n${err}`);
  })
    .then(text => expect(text).toBe('correct'))
    .then(done)
});

appium 服务器日志告诉我:

[HTTP] --> POST /wd/hub/session/63aa60d2-9638-4b1a-a226-cfbb2fcfce2c/element {"using":"css selector","value":"someName"}
[debug] [MJSONWP] Calling AppiumDriver.findElement() with args: ["css selector","someName","63aa60d2-9638-4b1a-a226-cfbb2fcfce2c"]
[debug] [BaseDriver] Valid locator strategies for this request: xpath, id, class name, accessibility id, -android uiautomator
[HTTP] <-- POST /wd/hub/session/63aa60d2-9638-4b1a-a226-cfbb2fcfce2c/element 500 4 ms - 152 
[HTTP] --> POST /wd/hub/session {"desiredCapabilities":{"javascriptEnabled":true,"locationContextEnabled":true,"handlesAlerts":true,"rotatable":true,"platformName":"android","app":"./app-dev-debug.apk","appPackage":"com.#####.dev.debug","appActivity":"com.#####.feature.start.StartActivity","avdReadyTimeout":1000,"udid":"LGK350RGNBS4TS","deviceName":"LG-K350","clearSystemFiles":true,"fullReset":true,"newCommandTimeout":120,"requestOrigins":{"url":"http://webdriver.io","version":"4.12.0","name":"webdriverio"}}}

但是 jsmine 卡住了,没有抛出错误,日志:

Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.

Stack:
  Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
    at ontimeout (timers.js:475:11)
    at tryOnTimeout (timers.js:310:5)
    at Timer.listOnTimeout (timers.js:270:5)

“完成”不是在承诺中调用

配置的 jasmine 超时 = 300000

主要问题:为什么 Jasmine 没有收到抛出的异常?

【问题讨论】:

    标签: javascript typescript jasmine appium webdriver-io


    【解决方案1】:

    找到解决方案(虚拟修复):

    使用功能:

    testMobile = <T>(promise: Client<T>, done: () => void): Client<void> =>
    promise.then(done, err => {
        expect(err).toBe('Ok');
        done();
    });
    

    并使用:

    it('wtf', done =>
      testMobile(client.init()
        .element('someName').getText()
        .then(result => result, err => {  
          throw new Error(`Cannot get text of element: #someName\n${err}`);
         })
         .then(text => expect(text).toBe('correct')),
      done)
    };
    

    【讨论】:

      猜你喜欢
      • 2017-04-07
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-03-03
      • 1970-01-01
      • 1970-01-01
      • 2011-08-04
      • 2023-03-05
      相关资源
      最近更新 更多