Android 使用Appium&;测试移动应用程序;WebdriverIO:“;找不到/session的路由;

Android 使用Appium&;测试移动应用程序;WebdriverIO:“;找不到/session的路由;,android,react-native,automated-tests,appium,webdriver-io,Android,React Native,Automated Tests,Appium,Webdriver Io,我想为Android和iOS平台(React Native)设置移动应用程序的自动化测试过程。为此,我使用和。例如,我正在使用现有的代码库和一个现成的代码库来运行测试。我在Android emulator中运行应用程序。基本设置如下所示 1。Appium 2。WebdriverIO wdio.shared.conf.js wdio.android.app.conf.js 3。步骤 首先,我打开Android emulator并启动Appium服务器: 然后我使用命令运行测试npm run

我想为Android和iOS平台(React Native)设置移动应用程序的自动化测试过程。为此,我使用和。例如,我正在使用现有的代码库和一个现成的代码库来运行测试。我在Android emulator中运行应用程序。基本设置如下所示

1。Appium

2。WebdriverIO

wdio.shared.conf.js

wdio.android.app.conf.js

3。步骤

首先,我打开Android emulator并启动Appium服务器:

然后我使用命令运行测试
npm run android.app
。之后,测试用例在后台执行,但是在模拟器中什么也没有发生,在终端中,我看到消息
[HTTP]找不到/session的路由


我的问题是:解决这个问题需要注意什么?因为我不知道该看什么以及如何正确设置配置。谢谢大家!

也许您应该尝试在配置中设置path变量?
exports.config = {
    // ====================
    // Runner and framework
    // Configuration
    // ====================
    runner: 'local',
    framework: 'jasmine',
    jasmineNodeOpts: {
        // Updated the timeout to 30 seconds due to possible longer appium calls
        // When using XPATH
        defaultTimeoutInterval: 90000,
        helpers: [require.resolve('@babel/register')],
    },
    sync: true,
    logLevel: 'silent',
    deprecationWarnings: true,
    bail: 0,
    baseUrl: 'http://the-internet.herokuapp.com',
    waitforTimeout: 10000,
    connectionRetryTimeout: 90000,
    connectionRetryCount: 3,
    reporters: ['spec'],

    // ====================
    // Appium Configuration
    // ====================
    services: [
        [
            'appium',
            {
            // For options see
            // https://github.com/webdriverio/webdriverio/tree/master/packages/wdio-appium-service
                args: {
                    // Auto download ChromeDriver
                    relaxedSecurity: true,
                    // chromedriverAutodownload: true,
                    // For more arguments see
                    // https://github.com/webdriverio/webdriverio/tree/master/packages/wdio-appium-service
                },
                command: 'appium',
            },
        ],
    ],
    port: 4723,
};
const { join } = require('path');
const { config } = require('./wdio.shared.conf');

// ============
// Specs
// ============
config.specs = [
    './tests/specs/**/app*.spec.js',
];

// ============
// Capabilities
// ============
// For all capabilities please check
// http://appium.io/docs/en/writing-running-appium/caps/#general-capabilities
config.capabilities = [
    {
        // The defaults you need to have in your config
        platformName: 'Android',
        maxInstances: 1,
        // For W3C the appium capabilities need to have an extension prefix
        // http://appium.io/docs/en/writing-running-appium/caps/
        // This is `appium:` for all Appium Capabilities which can be found here
        'appium:udid': 'emulator-5554',
        'appium:deviceName': 'Android SDK build for x86_64',
        'appium:platformVersion': '10.0',
        'appium:orientation': 'PORTRAIT',
        // `automationName` will be mandatory, see
        // https://github.com/appium/appium/releases/tag/v1.13.0
        'appium:automationName': 'Appium',
        // The path to the app
        'appium:app': join(process.cwd(), './apps/Android-NativeDemoApp-0.2.1.apk'),
        // Read the reset strategies very well, they differ per platform, see
        // http://appium.io/docs/en/writing-running-appium/other/reset-strategies/
        'appium:noReset': true,
        'appium:newCommandTimeout': 240,
    },
];

exports.config = config;