AWS设备场反应本地appium nodejs webdriverio测试不起作用

问题描述 投票:0回答:1

我已经使用Appium和WebdriverIO为React Native应用程序创建了测试,它在android模拟器和真实设备上可以在本地正常运行,但不适用于AWS设备场。我遵循了此教程https://medium.com/jetclosing-engineering/react-native-device-testing-w-appium-node-and-aws-device-farm-295081129790来创建测试。

问题是

[0-0] 2020-05-06T14:01:27.360Z INFO webdriver: COMMAND findElement("accessibility id", "app-root")
[0-0] 2020-05-06T14:01:27.370Z INFO webdriver: [POST] http://127.0.0.1:4723/wd/hub/session/5a7350a3-e8c2-4c9e-b31a-347ea4defcdb/element
[0-0] 2020-05-06T14:01:27.370Z INFO webdriver: DATA { using: 'accessibility id', value: 'app-root' }
[0-0] 2020-05-06T14:01:27.378Z INFO webdriver: COMMAND findElement("accessibility id", "loginEmail")
[0-0] 2020-05-06T14:01:27.388Z INFO webdriver: [POST] http://127.0.0.1:4723/wd/hub/session/5a7350a3-e8c2-4c9e-b31a-347ea4defcdb/element
2020-05-06T14:01:27.388Z INFO webdriver: DATA { using: 'accessibility id', value: 'loginEmail' }
2020-05-06T14:01:27.390Z INFO webdriver: COMMAND findElement("accessibility id", "app-root")
2020-05-06T14:01:27.393Z INFO webdriver: [POST] http://127.0.0.1:4723/wd/hub/session/5a7350a3-e8c2-4c9e-b31a-347ea4defcdb/element
2020-05-06T14:01:27.393Z INFO webdriver: DATA { using: 'accessibility id', value: 'app-root' }
[0-0] TypeError in "Simple App testing Valid Login Test"
$(...).setValue is not a function
[0-0] 2020-05-06T14:01:27.426Z INFO webdriver: COMMAND deleteSession()
[0-0] 2020-05-06T14:01:27.426Z INFO webdriver: [DELETE] http://127.0.0.1:4723/wd/hub/session/5a7350a3-e8c2-4c9e-b31a-347ea4defcdb
[0-0] 2020-05-06T14:01:28.306Z WARN webdriver: Request failed with status 500 due to An unknown server-side error occurred while processing the command. Original error: Could not proxy command to remote server. Original error: Error: socket hang up

同样的问题是waitForDisplayed $(...)。waitForDisplayed不是函数

测试文件

var expect = require('chai').expect;

describe('Simple App testing', () => {

  it('App is loaded', async function () {
    expect($("~app-root")).to.exist;    
});

  it('Valid Login Test', async => {
    $("~app-root");
    $('~loginEmail').setValue("[email protected]");
    $('~loginPassword').setValue("123456");

    $("~login").click();
    //$("~app-root").waitForDisplayed(11000, false);

    expect(true).to.equal(true);
  });
});

Package.json文件

{
  "name": "tests",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "npm install && npx wdio ./wdio.conf.local.js",
    "package": "npm install && npm-pack-zip"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "@wdio/cli": "^6.1.2",
    "@wdio/local-runner": "^6.1.2",
    "@wdio/mocha-framework": "^6.1.0",
    "@wdio/spec-reporter": "^6.0.16",
    "@wdio/sync": "^6.1.0",
    "wdio-chromedriver-service": "^6.0.2",
    "chromedriver": "^81.0.0",
    "chai": "^4.2.0",
    "webdriverio": "^6.1.2"
  },
  "devDependencies": {
    "npm-bundle": "^3.0.3",
    "npm-pack-zip": "^1.2.7"
  },
  "bundledDependencies": [
    "@wdio/cli",
    "@wdio/mocha-framework",
    "@wdio/local-runner",
    "@wdio/spec-reporter",
    "@wdio/sync",
    "webdriverio",
    "chai",
    "chromedriver",
    "wdio-chromedriver-service"
  ]
}

wdio.config.js文件

exports.config = {

    runner: 'local',

    specs: [
        './test/specs/**/*.js'
    ],
    exclude: [
        // 'path/to/excluded/files'
    ]
    maxInstances: 1,
    capabilities: [{    
        maxInstances: 1,
        appWaitDuration: 100000,
        appWaitActivity: '*'
    }],
    logLevel: 'info',
    bail: 0,
    baseUrl: 'http://localhost',
    path: '/wd/hub',
    waitforTimeout: 10000,
    connectionRetryTimeout: 120000,
    connectionRetryCount: 3,
    services: ['appium'],
    port: 4723,
    framework: 'mocha',

    reporters: ['spec'],

    mochaOpts: {
        ui: 'bdd',
        timeout: 60000
    },
}

Yml文件安装和测试阶段

phases:
  install:
    commands:
      - npm install -g appium
      - export APPIUM_VERSION=1.17.0
      - avm $APPIUM_VERSION
      - ln -s /usr/local/avm/versions/$APPIUM_VERSION/node_modules/.bin/appium  /usr/local/avm/versions/$APPIUM_VERSION/node_modules/appium/bin/appium.js

      - cd $DEVICEFARM_TEST_PACKAGE_PATH
      - echo $DEVICEFARM_TEST_PACKAGE_PATH
      - npm install

  test:
    commands:
      - echo "Navigate to test source code"
      - cd $DEVICEFARM_TEST_PACKAGE_PATH/node_modules/*
      - echo "Start Appium Node test for Qbunk Android"
      - ls
      - echo $DEVICEFARM_TEST_PACKAGE_PATH
      - npm install
      - echo "Installing wdio"
      - npm install --save webdriverio @wdio/cli
      - echo "Installing chai"
      - npm install --save chai
      - npx wdio $DEVICEFARM_TEST_PACKAGE_PATH/wdio.conf.js --spec $DEVICEFARM_TEST_PACKAGE_PATH/test/specs/*.js          

有趣的是,我遵循了此https://aws.amazon.com/blogs/mobile/testing-mobile-apps-across-hundreds-of-real-devices-with-appium-node-js-and-aws-device-farm/ AWS教程,并使用wd在AWS Device Farm上正常运行了我的测试。

请让我知道是否需要更多信息。谢谢

node.js react-native mocha webdriver-io aws-device-farm
1个回答
0
投票

此问题已解决,主要与Yml文件的安装和测试阶段有关。我现在要在安装阶段中全局安装wdio cli和chai,之后再使用npm install安装所需的依赖项并在测试阶段中运行测试。

phases:
  install:
    commands:
      - export APPIUM_VERSION=1.16.0
      - avm $APPIUM_VERSION
      - ln -s /usr/local/avm/versions/$APPIUM_VERSION/node_modules/.bin/appium  /usr/local/avm/versions/$APPIUM_VERSION/node_modules/appium/bin/appium.js
      - ls
      - echo "Installing wdio globally"
      - npm install -g webdriverio @wdio/cli
      - echo "Installing chai globally"
      - npm install -g chai
      - cd $DEVICEFARM_TEST_PACKAGE_PATH
      - npm install

  test:
    commands:
      - echo "Navigate to test source code"
      - cd $DEVICEFARM_TEST_PACKAGE_PATH/node_modules/*
      - npx wdio $DEVICEFARM_TEST_PACKAGE_PATH/wdio.conf.js --spec $DEVICEFARM_TEST_PACKAGE_PATH/test/specs/*.js    

而且,我不需要zip文件中的依赖项,所以我在package.json文件中删除了bundledDependencies,我正在yml安装阶段中安装它们。

{
  "name": "tests",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "npm install && npx wdio ./wdio.conf.local.js",
    "package": "npm install && npm-pack-zip"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "@wdio/cli": "^6.1.9",
    "@wdio/local-runner": "^6.1.2",
    "@wdio/mocha-framework": "^6.1.0",
    "@wdio/spec-reporter": "^6.0.16",
    "@wdio/sync": "^6.1.0",
    "chai": "^4.2.0",
    "chromedriver": "^81.0.0",
    "wdio-chromedriver-service": "^6.0.2",
    "webdriverio": "^6.1.9"
  },
  "devDependencies": {
    "npm-bundle": "^3.0.3",
    "npm-pack-zip": "^1.2.7"
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.