I am testing a React Native app using Appium in Python. This is the first time seeing that the app responds too slow with Appium but works completely fine while testing manually. Any idea on how to improve speed of tests?
Asked
Active
Viewed 443 times
1 Answers
1
One way to improve test speed is use a modern device. For your issue, because the app runs well without also running appium doesn't mean the device is not the culprit. Appium does run on the device while also running the app, so the device needs to be able to run both the app and other apps at the same time well to be able to run smooth appium tests.

Legako
- 33
- 2
- 8
-
This is not an answer, make a comment instead – Classy-Bear Jan 29 '22 at 05:27
-
1The thing is, I have tried that app on multiple devices and the result was same. Even a simple click on a button took almost a minute to execute, even while using python idle shell. This is my first time facing this issue so no ideas whats going on. – Umer Saeed Feb 02 '22 at 15:17
-
Anything going on in the appium logs during that minute? – Legako Feb 02 '22 at 21:40
-
When the command is executed, the appium logs show element being matched but then go silent until that click happens. – Umer Saeed Feb 03 '22 at 10:23