使用Appium网格时,无法使用2个以上的设备执行测试
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Appium网格时,无法使用2个以上的设备执行测试相关的知识,希望对你有一定的参考价值。
上下文:我一直在用Appium编写自动化测试脚本很长一段时间,一切都运行良好,但现在我正在尝试使用Appium网格执行多个设备的测试,而我在执行时遇到问题测试超过2个设备。
问题:使用2个以上的设备时,无法使用Appium网格执行测试。
我几乎可以肯定,问题在于节点配置,我只是尝试在线跟踪示例,但没有找到任何定义,节点配置中的强制性。
我的设置是这样的:节点配置文件:所有设备都是物理的
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 -role hub
2)appium = -p 4723 --nodeconfig /LG_K11.json
3)appium = -p 4492 --nodeconfig /Samsung_Tab_S4.json
4)appium = -p 8201 --nodeconfig /Samsung_Galaxy_S9.json
然后在IntelliJ中运行此代码以初始化节点:我只更改ports,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)
解决了它,问题是我需要通过一个bootstrap端口,因为它们是冲突的。所以在命令中添加了“-bp 1020x”。之前:
appium -p 4723 --nodeconfig= /LG_K11.json
后:
appium -p 4723 -bp 10200 --nodeconfig= /LG_K11.json
这个链接可能对将来面临问题的人有所帮助:https://dpgraham.github.io/appium-docs/setup/parallel_tests/
以上是关于使用Appium网格时,无法使用2个以上的设备执行测试的主要内容,如果未能解决你的问题,请参考以下文章