Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/visual-studio-2012/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android Can’;使用Appium网格时,不能使用2个以上的设备执行测试_Android_Appium_Selenium Grid - Fatal编程技术网

Android Can’;使用Appium网格时,不能使用2个以上的设备执行测试

Android Can’;使用Appium网格时,不能使用2个以上的设备执行测试,android,appium,selenium-grid,Android,Appium,Selenium Grid,背景: 我已经用Appium编写了一段时间的自动化测试脚本,大部分时间一切都很好,但是现在我尝试使用Appium网格使用多个设备执行测试,当我使用两个以上的设备执行测试时遇到了问题 问题: 使用2个以上设备时,无法使用Appium grid执行测试 我几乎可以肯定的是,问题在于节点配置,我只是尝试在线跟踪示例,但没有找到定义的任何地方,即节点配置中必需的内容 我的设置如下: 节点配置文件: 所有设备都是物理设备 LG K11: { "capabilities":

背景: 我已经用Appium编写了一段时间的自动化测试脚本,大部分时间一切都很好,但是现在我尝试使用Appium网格使用多个设备执行测试,当我使用两个以上的设备执行测试时遇到了问题

问题: 使用2个以上设备时,无法使用Appium grid执行测试

我几乎可以肯定的是,问题在于节点配置,我只是尝试在线跟踪示例,但没有找到定义的任何地方,即节点配置中必需的内容

我的设置如下: 节点配置文件: 所有设备都是物理设备

LG K11:

    {
    "capabilities":
        [
            {
            "deviceName":"xxxxxxx",
            "version":"7.1.2",
            "platformName":"Android",
            "automationName": "Appium”,
            "udid":"xxxxxxx"
            }
        ],
    "configuration":
        {
            "cleanUpCycle":3000,
            "timeOut":300000,
            "proxy":"org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
            "url":"http://127.0.0.1:4723/wd/hub",
            "host":"127.0.0.1",
            "port": 4723,
            "register": true,
            "registerCycle": 5000,
            "hubPort":4444,
            "hubHost":"127.0.0.1",
            "hubProtocol": "http"
        }
    }
三星平板电脑S4:

    {
    "capabilities":
        [
            {
            "deviceName":"xxxxxxx",
            "version":"8.1.0",
            "platformName":"Android",
            "automationName": "Appium",
            "udid":"xxxxxxx"
            }
        ],
    "configuration":
        {
            "cleanUpCycle":3000,
            "timeOut":300000,
            "proxy":"org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
            "url":"http://127.0.0.1:4492/wd/hub",
            "host":"127.0.0.1",
            "port":4492,
            "register": true,
            "registerCycle": 5000,
            "hubPort":4444,
            "hubHost":"127.0.0.1",
            "hubProtocol": "http"
        }
    }
三星Galaxy S9:

    {
    "capabilities":
        [
            {
            "deviceName":"xxxxxxx",
            "version":"8.0.0",
            "platformName":"Android",
            "automationName": "Appium",
            "udid":"xxxxxxx"
            }
        ],
    "configuration":
        {
            "cleanUpCycle":3000,
            "timeOut":300000,
            "proxy":"org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
            "url":"http://127.0.0.1:8201/wd/hub",
            "host":"127.0.0.1",
            "port":8201,
            "register": true,
            "registerCycle": 5000,
            "hubPort":4444,
            "hubHost":"127.0.0.1",
            "hubProtocol": "http"
        }
    }
我通过在4个单独的终端选项卡中执行以下命令来启动节点: 1) java-jar selenium-server-standalone-3.141.59.jar-角色中心

2) appium-p4723--nodeconfig=/LG_K11.json

3) appium-p4492--nodeconfig=/Samsung\u Tab\u S4.json

4) appium-p 8201--nodeconfig=/Samsung\u Galaxy\u S9.json

然后在IntelliJ中,我运行以下代码来初始化节点: 我只更改端口、udid和deviceName功能,并在单独的线程中运行初始化方法,然后等待它们全部完成

initDevice(String udid, int port){
    DesiredCapabilities capabilities = new DesiredCapabilities();
    capabilities.setCapability("platformName", "Android");
    capabilities.setCapability("deviceName",udid );
    capabilities.setCapability("appPackage", “xxxxxxxxx”);
    capabilities.setCapability("appActivity","MainActivity");
    capabilities.setCapability("platformName","Android");
    capabilities.setCapability("udid",udid);
    capabilities.setCapability("noReset", true);

    try {
        String appiumServerURL = String.format("http://127.0.0.1:%d/wd/hub", port);
        driver = new AndroidDriver(new URL(appiumServerURL), desiredCapabilities);
    } catch (MalformedURLException e) {
        e.printStackTrace();
    }
}
初始化后,当我尝试执行任何命令(如findElement)时,我在其中一个设备上发生崩溃:

org.openqa.selenium.WebDriverException: An unknown server-side error occurred while processing the command. Original error: Android bootstrap socket crashed: Error: This socket has been ended by the other party
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:17:03'
System info: host: ‘xxxxxx’, ip: ‘xxxxxxxxxx’, os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.14.3', java.version: '1.8.0_191'
Driver info: io.appium.java_client.android.AndroidDriver
Capabilities {appActivity: MainActivity, appPackage: xxxxxxxxxx, databaseEnabled: false, desired: {appActivity: MainActivity, appPackage: xxxxxxxx, deviceName: xxxxxx, noReset: true, platformName: android, udid: xxxxxxxx}, deviceManufacturer: samsung, deviceModel: SM-G960F, deviceName: xxxxxxx, deviceScreenSize: 1440x2960, deviceUDID: xxxxxxx, javascriptEnabled: true, locationContextEnabled: false, networkConnectionEnabled: true, noReset: true, platform: LINUX, platformName: Android, platformVersion: 8.0.0, takesScreenshot: true, udid: xxxxxxxxxx, warnings: {}, webStorageEnabled: false}
Session ID: xxxxxxxx
*** Element info: {Using=xpath, value=//android.widget.ImageView[@content-desc="More options"]}

    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at org.openqa.selenium.remote.http.W3CHttpResponseCodec.createException(W3CHttpResponseCodec.java:187)
    at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:122)
    at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:49)
    at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:158)
    at io.appium.java_client.remote.AppiumCommandExecutor.execute(AppiumCommandExecutor.java:239)
    at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:552)
    at io.appium.java_client.DefaultGenericMobileDriver.execute(DefaultGenericMobileDriver.java:42)
    at io.appium.java_client.AppiumDriver.execute(AppiumDriver.java:1)
    at io.appium.java_client.android.AndroidDriver.execute(AndroidDriver.java:1)
    at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:323)
    at io.appium.java_client.DefaultGenericMobileDriver.findElement(DefaultGenericMobileDriver.java:62)
    at io.appium.java_client.AppiumDriver.findElement(AppiumDriver.java:1)
    at io.appium.java_client.android.AndroidDriver.findElement(AndroidDriver.java:1)
    at org.openqa.selenium.remote.RemoteWebDriver.findElementByXPath(RemoteWebDriver.java:428)
    at io.appium.java_client.DefaultGenericMobileDriver.findElementByXPath(DefaultGenericMobileDriver.java:152)
    at io.appium.java_client.AppiumDriver.findElementByXPath(AppiumDriver.java:1)
    at io.appium.java_client.android.AndroidDriver.findElementByXPath(AndroidDriver.java:1)
    at org.openqa.selenium.By$ByXPath.findElement(By.java:353)
    at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:315)
    at io.appium.java_client.DefaultGenericMobileDriver.findElement(DefaultGenericMobileDriver.java:58)
    at io.appium.java_client.AppiumDriver.findElement(AppiumDriver.java:1)
    at io.appium.java_client.android.AndroidDriver.findElement(AndroidDriver.java:1)
    at org.openqa.selenium.support.ui.ExpectedConditions$7.apply(ExpectedConditions.java:205)
    at org.openqa.selenium.support.ui.ExpectedConditions$7.apply(ExpectedConditions.java:201)
    at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:249)
    at xxxxxxxxx.BaseScreen.waitAndFind(BaseScreen.java:77)
    at xxxxxxxxx.screens.BaseScreen.waitAndFind(BaseScreen.java:73)
    at xxxxxxxxx.screens.MainScreen.getBroadcastOptionsButton(MainScreen.java:23)
    at xxxxxxxxx.tests.PositiveFlows.userClicksBroadcastOptionsMenu(PositiveFlows.java:400)
    at xxxxxxxxx.tests.PositiveFlows.tc5(PositiveFlows.java:316)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)


org.openqa.selenium.WebDriverException: An unknown server-side error occurred while processing the command. Original error: Android bootstrap socket crashed: Error: This socket has been ended by the other party
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:17:03'
System info: host: xxxxxxx, ip: xxxxxxxx, os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.14.3', java.version: '1.8.0_191'
Driver info: io.appium.java_client.android.AndroidDriver
Capabilities {appActivity: MainActivity, appPackage: xxxxxxx, databaseEnabled: false, desired: {appActivity: MainActivity, appPackage: xxxxxxx, deviceName: xxxxxxx, noReset: true, platformName: android, udid: xxxxxxx}, deviceManufacturer: samsung, deviceModel: SM-G960F, deviceName: xxxxxxx, deviceScreenSize: 1440x2960, deviceUDID: xxxxxxx, javascriptEnabled: true, locationContextEnabled: false, networkConnectionEnabled: true, noReset: true, platform: LINUX, platformName: Android, platformVersion: 8.0.0, takesScreenshot: true, udid: xxxxxxx, warnings: {}, webStorageEnabled: false}
Session ID: xxxxxxx
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at org.openqa.selenium.remote.http.W3CHttpResponseCodec.createException(W3CHttpResponseCodec.java:187)
    at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:122)
    at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:49)
    at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:158)
    at io.appium.java_client.remote.AppiumCommandExecutor.execute(AppiumCommandExecutor.java:239)
    at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:552)
    at io.appium.java_client.DefaultGenericMobileDriver.execute(DefaultGenericMobileDriver.java:46)
    at io.appium.java_client.AppiumDriver.execute(AppiumDriver.java:1)
    at io.appium.java_client.android.AndroidDriver.execute(AndroidDriver.java:1)
    at org.openqa.selenium.remote.RemoteWebDriver.quit(RemoteWebDriver.java:452)
    at xxxxxxx.tests.PositiveFlows.tearDown(PositiveFlows.java:476)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:33)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

解决了这个问题,问题是我需要传递一个引导端口,因为它们相互冲突。因此,在命令中添加了“-bp 1020x”。 之前:

之后:

appium -p 4723 -bp 10200 --nodeconfig= /LG_K11.json

这个链接可能对将来面临问题的人有所帮助:

解决了它,问题是我需要传递一个引导端口,因为它们相互冲突。因此,在命令中添加了“-bp 1020x”。 之前:

之后:

appium -p 4723 -bp 10200 --nodeconfig= /LG_K11.json

此链接可能对将来面临问题的人有所帮助:

您是否尝试过配置中的
“maxInstances”:4
。我尝试过许多不同的配置,尝试过maxInstances和maxSessions。您是否检查过我之前找到的配置,并尝试过上面提到的--suppress adb kill server参数,但是它没有帮助您是否在配置中尝试了
“maxInstances”:4
。我尝试了许多不同的配置,尝试了maxInstances和maxSessions。您是否检查了我之前找到的配置,并尝试了提到的--suppress adb kill server参数,但它没有帮助,谢谢发布答案。np,你自己经历过吗?不,我没有经历过。酷,谢谢你发布答案。np,你自己经历过吗?不,我没有经历过。