Skip to content

selenide-examples/selenide-appium

Folders and files

NameName
Last commit message
Last commit date
Oct 21, 2024
Oct 7, 2024
Oct 25, 2023
Jan 25, 2021
Jun 28, 2024
Feb 25, 2025
Oct 7, 2024
Oct 7, 2024
Sep 13, 2016

Repository files navigation

Selenide examples: Appium

Mobile automation

How to test mobile application with Selenide and Appium

How to run the example

  • Run the emulator:

    open Android Studio -> "Android Virtual Device Manager" -> Run

  • Run appium server:

    appium

  • And finally, run the test:

    ./gradlew test

Thanks to Maryna Kolesnik for CalculatorTest example! Her original sample can be found here

NB! This project uses a simple approach for tests: it just calls Selenide standard $ method to find elements in mobile app. I like it. It's just good enough.

But it's also possible to use Android- and IOS- specific annotations like @AndroidFindBy. Library selenide-appium has Selenide+Appium specific page factory for supporting those annotations and many other features.