AWS Device Farm helps you to improve the quality of your iOS, Android, and web applications by testing them against real phones and tablets in the AWS Cloud.
Questions tagged [aws-device-farm]
352 questions
2
votes
0 answers
Webdriverio Cucumberjs tests for a React Native app fails on AWS Device Farm - Socket hang up
I'm writing End-to-ends tests for a React Native app using WebdriverIo, Appium and Cucumberjs and deploying the tests on the AWS Device Farm.
The tests are working fine both on the Android simulator and on an actual real device. Though, on AWS, it…

satler
- 75
- 3
- 11
2
votes
1 answer
How to speed up selenium tests on AWS device farm?
I'm using Python for testing on AWS device farm. It seems that starting a selenium takes very very long. This is the code I use:
from time import time
from boto3 import client
from selenium import webdriver
def main():
start = time()
…

Ikar Pohorský
- 4,617
- 6
- 39
- 56
2
votes
1 answer
Can't install Galaxy store app on AWS Device Farm S10 Device
I'm need to download an app from the galaxy store app, but I can't open the galaxy store app. It installed (as system app), but don't have a way to open it.
I tryied to install it manauly from the web. It's installed, but can't be open (and don't…

user11756290
- 41
- 1
- 3
2
votes
1 answer
How to run maven command in AWS Device Farm
I am trying to run my java mobile project in device farm using maven.
When I run this command on my local machine in the right directory it works:
mvn test -D "cucumber.options="src/test/java/cucumber/features" --glue
cucumber.steps --tags…

kidulf
- 419
- 1
- 6
- 17
2
votes
2 answers
Does AWS Device Farm support Android Orchestrator?
Can I upload Android Orchestrator .apk to the AWS Device Farm as a 3rd apk (together with main app apk and test-suite apk)? Or application state is not persistent in the Device Farm, so that it doesn't require external Orchestrator at all?
Currently…

Shurov
- 400
- 1
- 9
- 20
2
votes
1 answer
Device farm interactive testing done programmatically
AWS has a 'remote-desktopy' feature (https://aws.amazon.com/blogs/aws/aws-device-farm-update-remote-access-to-devices-for-interactive-testing/) as part of its device farm, but it is far too slow to use in browser. Does anyone know if there is a…

home_wrecker
- 365
- 2
- 11
2
votes
2 answers
Does AWS device farm supports Appium with serenity BDD & Gradle?
I want to use AWS Device Farm for mobile app testing but I cannot see any support for Appium with Serenity BDD & Gradle as per their documentation.
I have seen AWS device farm is supporting the below
Test Type Configuration
Appium JUnit
Appium…

vamc
- 125
- 1
- 2
- 13
2
votes
1 answer
AWS Device Farm app doesn't list any devices
I'm attempting to manually test and debug apps from Android Studio in my AWS WorkSpace using AWS Device Farm. I downloaded the Device Farm app, and followed all of the instructions, but no devices are showing up in the list when I'm trying to create…

ThisGuyKnowsCode
- 530
- 4
- 18
2
votes
2 answers
AWS Device Farm.How can i save the custom report being generated after the test case into my local space
I am working with AWS device farm.My test script when run on my local system works as expected and generates a report in my local system at specified path.Now when i run the code in the device farm the report does not get generated.Am i missing…

Rizwan Ebrahim
- 43
- 6
2
votes
1 answer
Access additional test files for Appium tests on AWS device farm
I am running Appium tests with JUnit on AWS device farm. Is there a way to upload additional test files and access them from within my code? So basically, can I access the file system of the container that runs the Appium tests?
I have the necessary…

martin
- 2,150
- 1
- 34
- 48
2
votes
1 answer
Speed up Amazon Device Farm Appium Python Tests
Setting up a series of tests I decided for Appium Python as I saw that it had support in both AWS Device Farm and Microsoft App Center.
I am making a one device test run on AWS and I see that every unit test takes 1:30 minutes to be done. Since I…

sebastianf182
- 9,844
- 3
- 34
- 66
2
votes
2 answers
Upload file to AWS Device Farm
I am trying to use python + boto3 to create upload in device farm (uploading a test or an application). The method "create_upload" works fine as it returns an upload arn and url to upload to it.
When I try to use requests to upload file to this URL…

Elheni Mokhles
- 3,801
- 2
- 12
- 17
2
votes
1 answer
'[TestNG] Couldn't find the testng.xml in the jar file, running all the classes' error while running test on AWS Device Farm
I am trying to run a test suite on AWS device farm, It is a Maven project, I get the following error on the device farm Parsing result document: [TestNG] Couldn't find the testng.xml in the jar file, running all the classes.
While creating the zip…

Ronit Joardar
- 31
- 2
- 6
2
votes
1 answer
XCTest Unit and UI tests for AWS Device Farm
I'm trying to set up our iOS XCTest to run on AWS Device Farm, but it seems no matter how I build and upload them, the tests will always give error and failed every time. They successfully execute when i run through the XCode, but do not run on AWS…

VSP
- 166
- 11
2
votes
1 answer
How do I get code coverage of AWS Device Farm tests with Android?
I am running instrumentation tests on AWS Device Farm and can download the results of the tests but do not see any *.exec or *.ec files in the results. This is what I typically see when running tests locally with an attached device/emulator using…

browep
- 5,057
- 5
- 29
- 37