Selenium - automated user interaction

Viewed 15

Do you know if is possible to develop an automated user interaction that uses an Android application developed by me using Selenium? If the answer is negative. There is another tool to develop it?

1 Answers

Selenium WebDriver is used for desktop web functional automation testing. In order to be used on Android you will need to use Appium (works with iOS as well).

It was already answered here by the way.

Related