1

デスクトップ アプリの統合に成功しAppium、次のチュートリアルに従って正常に動作します: http://latestsoftwaretestingnews.com/mobiletesting/appium-ios-testing-with-node-js-step-by-step-guide/

main.js

describe ('Simple cases', function (){
      before (function (){
        this.timeout(50000);
        return client.init();
      });
      describe('test-app-addition', function (){
        it('add-3-3', function(){
          return client.element('~IntegerA')
          .setValue ('3')
          .elementByAccessibilityId ('~IntegerB')
          .setValue('3')
          .click('~ComputeSumButton')
          .element('~Answer')
          .getText()
          .then(function (text){
            expect(text).to.equal('6');
          });
        });
      });
      after(function(){
        return client.end();
      });
    });

$npm run nativeしかし、コマンドを実行するとエラーが発生します。スクリーンショットを参照

ここに画像の説明を入力

あなたの助けと提案に感謝します!

ありがとう

4

0 に答える 0