Lesson 6 Flashcards

1
Q

Do apps have different issues on different devices?

A

Yes. That’s why we need to test mobile apps on at least the most popular devices
(ideally, on almost all devices)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Most popular mobile devices are:

A

Latest versions of iPhone
Samsung Galaxy S8, S9, S10
Google Pixel 2, 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Emulators

A

Android devices emulator https://www.youtube.com/watch?v=PXZ2koQFZbE
iPhone devices emulator https://www.youtube.com/watch?v=YGOviWHPNjQ

Also Chrome DevTools (Chrome Inspector) for the mobile website view simulation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Xcode

A

Xcode is an integrated development environment (IDE) for macOS containing a suite of software development tools developed by Apple for developing software for macOS, iOS, watchOS, and tvOS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Android Studio

A

Android Studio is the official integrated development environment (IDE) for Google’s Android operating system and designed specifically for Android development. Android Developers use Android Studio to develop applications and test their code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

ADB (Android Debugging Bridge)

A

Android Debug Bridge (ADB) is a versatile command-line tool that lets you communicate with a device. The ADB command facilitates a variety of device actions, such as installing and debugging apps, collect logs, take screenshots are manipulated device files. It provides access to a Unix shell that you can use to run a variety of commands on a device.

ADB usually communicates with the device over USB (the device needs to be connected to your machine). QA Engineers mainly use the ADB tool to install builds and collect system logs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Enable Developer Mode on Android

A
  1. From the home screen, tap the Apps icon.
  2. Find and tap on Settings.
  3. Scroll down and tap on About phone.
  4. Find and tap Software info.
  5. Find Build Number and tap it 7 times.
  6. Once you see the prompt “Developer mode has been turned on,” then you’ve successfully enabled it.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Enable Developer Mode on iOS

A

On iOS it is enabled via Xcode:

  1. Scroll down and tap Developer.
  2. The Developer option will automatically appear next to a hammer icon on your iPhone’s Settings menu when you plug it into your computer while running Xcode.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly