Research Article Open Access

Improving the Exploration Strategy of an Automated Android GUI Testing Tool based on the Q-Learning Algorithm by Selecting Potential Actions

Goh Kwang Yi1, Salmi Binti Baharom1 and Jamilah Din1
  • 1 Universiti Putra Malaysia, Malaysia

Abstract

Researchers have proposed automated testing tools to minimise the effort and resources spent on testing GUIs. A relatively simple strategy employed by the proposed tools thus far is the observe-select-execute approach, where all of a GUI’s actions on its current state are observed, one action is selected and the selected action is executed on the software. The strategy’s key function is to select an action that may achieve new and desirable GUI states. Due to difficulties in comparing actions, most existing test generators ignore this step and randomly select an action. However, a randomly selected action has limitations. It does not test most parts of a GUI within a reasonable amount of time and there is a high probability that the same actions are re-selected. This reduces code coverage, thereby resulting in undetected failures. To overcome this limitation, the Q-Learning algorithm was proposed by several researchers to minimise randomness. The idea was to change the probability distribution over the sequence space. Instead of making purely random selections, the least frequently executed action is selected so that the GUI can be further explored. Q-Learning showed better results than the random exploration strategy but it also presented a weakness. Q-Learning’s reward function assigns the highest value to the least frequently executed action without taking into consideration its potential ability in detecting failures. Furthermore, the proposed techniques based on the Q-Learning algorithm do not consider context-based actions. Thus, these techniques are unable to detect failures that occur due to the improper use of context data, which is becoming an increasingly common issue in mobile applications nowadays. We propose a tool, namely the Crash Droid, that allows the automation of testing context-aware Android applications. We utilise the Q-Learning algorithm to compare actions, including context-based actions, to effectively detect crashes and achieve a higher code coverage.

Journal of Computer Science
Volume 18 No. 2, 2022, 90-102

DOI: https://doi.org/10.3844/jcssp.2022.90.102

Submitted On: 29 July 2021 Published On: 2 March 2022

How to Cite: Yi, G. K., Baharom, S. B. & Din, J. (2022). Improving the Exploration Strategy of an Automated Android GUI Testing Tool based on the Q-Learning Algorithm by Selecting Potential Actions. Journal of Computer Science, 18(2), 90-102. https://doi.org/10.3844/jcssp.2022.90.102

  • 1,984 Views
  • 833 Downloads
  • 0 Citations

Download

Keywords

  • Automated Mobile GUI Testing
  • Q-Learning
  • Context-Aware