Android App Testing

Suppose I need to test an android app. What all the basic testing I need to do as an Tester?

Showing Answers 1 - 18 of 18 Answers

prafful

  • Aug 8th, 2015
 

Send me how to test android application

  Was this answer useful?  Yes

kajal

  • Aug 10th, 2015
 

1. First of all we need to check, what all android version this app supports.

2. Look and feel of the app on smart phones and tablets.

3. Change in orientation
For devices that support multiple orientations, Android detects a change in orientation when the user turns the device so that the display is "landscape" (long edge is horizontal) instead of "portrait" (long edge is vertical).

When Android detects a change in orientation, its default behavior is to destroy and then re-start the foreground Activity. You should consider testing the following:

Is the screen re-drawn correctly? Any custom UI code you have should handle changes in the orientation.

Does the application maintain its state? The Activity should not lose anything that the user has already
entered into the UI. The application should not "forget" its place in the current transaction.

4. Change in Configuration
Besides testing that the application maintains the UI and its transaction state, you should also test that the application updates itself to respond correctly to the new configuration.

5. Battery Life
You need to test its battery performance

  Was this answer useful?  Yes

Imran

  • Sep 15th, 2015
 

While doing Android App Testing, we are not concentrating on core functionality of mobile devices but we test the effect of core functionality of mobile devices on functionality of application. First we verify the device and device version of application, then we can do installation testing, Connectivity issue with deffer network like wifi, 2G, 3G or EDGE, Interrupt Testing like Calls and SMS during the application is running, Functional Testing of application, uninstallation testing.

  Was this answer useful?  Yes

Tarun

  • Jan 15th, 2016
 

1. Check the performance of the application with 2g, 3g.
2. Look and feel of the app on smart phones and tablets.
3. Check the server response.

  Was this answer useful?  Yes

vishal sharma

  • Feb 20th, 2016
 

1. Look and Feel
2. Menu Option
3. Performance of the app
4. Interaction with server

  Was this answer useful?  Yes

Ashutosh

  • Mar 22nd, 2016
 

1. Installation/Uninstallation
2. Orientation(If the app supports)
3. Different screen sizes.
4. Different network conditions(2G, 3G, 4G, Wifi)
5. Interruption such as calls while using the app.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions