This commit is contained in:
2022-05-17 01:56:44 +03:00
commit 3a9b8c8468
117 changed files with 7175 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
== Android
WARNING: Hardware server or virtual machine with nested virtualization support is required to run Android images.
.Android Images
|===
| Image | Android version | Appium version
| browsers/android:4.4 | 4.4 | 1.18.1
| browsers/android:5.0 | 5.0 | 1.18.1
| browsers/android:5.1 | 5.1 | 1.18.1
| browsers/android:6.0 | 6.0 | 1.18.1
| browsers/android:7.0 | 7.0 | 1.18.1
| browsers/android:7.1 | 7.1 | 1.18.1
| browsers/android:8.0 | 8.0 | 1.18.1
| browsers/android:8.1 | 8.1 | 1.18.1
| browsers/android:9.0 | 9.0 | 1.18.1
| browsers/android:10.0 | 10.0 | 1.18.1
|===
[NOTE]
====
. These images include VNC server and Android Quick Boot snapshot.
. Neither Chromedriver nor Chrome Mobile are installed. To test hybrid apps build your own image using provided automation script.
====
An example `browsers.json` for Android images looks like the following:
[source,json]
----
{
"android": {
"default": "6.0",
"versions": {
"6.0": {
"image": "browsers/android:6.0",
"port": "4444",
"path": "/wd/hub"
}
}
}
}
----
An example Java test can be found https://github.com/aerokube/demo-tests/blob/master/src/test/java/com/aerokube/selenoid/AndroidRemoteApkTest.java[here].