Skip to content

This project offers a framework for appium projects to make mobile app testing easier. The approach is similar to page object oriented Selenium frameworks, we homogenize how xpaths, ids, ... are related to page objects, how screenshots are taken and where are saved. We also provide modules and classes that automate the process to get the right c…

License

AntoData/appium-framework

Repository files navigation

appium-framework

This framework provides several features to make your appium projects more easy and standarized. We included features to get the JSON needed to test an Android application, the management of xpaths, ids and other selectors, automatic screenshots, automatic videos and also to schedule the execution of different apps in different devices, real or virtual also remote apps in BitBar.

Our project contains the following packages, modules and files:

  • abs_class: In this folder we include all abstract classes used in this project
    • appwindowobject.py: This module contains the abstract class AppWindowObject: This is an abstract class that should be the parent of every "page object" class, it manages the driver creation and connection to the appium server, the managing of JSON files, driver capabilities... All our classes in folder app_window_objects must extend this one
  • apks: This folder should contains the files apk in case we want to install an application in a device
  • app_window_objects: In this class we should include the modules that contain the classes that will interact with our app, the ones where we define the methods that interact with our app (clicking in buttons,...)
  • profiles: Here is where we should have all the JSON files. We will extract the desired capabilities for our webdrives from these files.
  • screenshots: For each test we will generate a folder here and all screenshots taken during that screenshot will be placed there
  • selectors: Here is where we should store the ini files that contain the xpaths, ids, ... needed in a page object class. In order for this framework to work, these files must have the same name that the class where they will be used in lowercase
  • test_reports: Here we will store the reports generated after the execution of all tests we have scheduled
  • test_suites: Here is where we will store all the test suite classes, these classes will extend the class unittest.TestCase:
    • The method setUp should be overwritten and contain the instantiation of the main/first page object that is the one that connects to appium and also where we create the object to record a video and start the recording session. Also we should overwrite the method tearDown to stop the recording session after every test
  • tmp: Here is where we will save a tmp file where we will tell the class appwindowobject which JSON file it should extract the capabilities from in this iteration when using the scheduler feature.
  • utils: Here we included several modules that contains several interesting and useful modules for this framework. For instance, a script that helps us to get the JSON file to execute test in our current device and app.
    • bitbar_file_uploader.py: This module allows us to automatically upload the file apk we selected in the folder apks to BitBar when we want to run a remote test in BitBar.
    • capabilities_utils.py: This module offers several methods to get the capabilities we need in a driver to run an appium tests. These are used in script_capabilities.py to generate the JSON file where we will store the capabilities
    • report_utils.py: This module offers several method to generate and write the txt report in folder test_reports in each execution of our test scheduler.
    • screenshot_utils.py: This module provides the feature in which all our screenshots in an appium test are stored in the same folder in folder screenshots and also gives them a personalized name.
    • script_capabilities.py: We run this module with our device connected and our application running in the forefront to get the capabilities needed to run an appium test in a JSON file.
    • webdriver_find_utils.py: This module is the one we use to offer the property locators in our page object classes. That property will offer find methods with implicit wait and a time out. We will get an screenshot everytime we execute them too and also provide the ability to get screenshots when we want, all of them will go to the correct folder in folder screenshots.
  • videoRecorder: Here we included the classes that allow us to record videos for each test
  • videos: In this folder we will create the folders where we will save our videos for each recording session
  • interactive_test_runner.py: If everything is set up fine, when executing this script our tests will start running in the order specified in scheduled-tests.ini
  • npm-requirements.txt: Requirements for npm
  • requirements.txt: Required Python modules for this project to ber installed using pip install
  • scheduled-tests.ini: In this file, we will provide the order in which we want our test suites to be executed. Also, we will set in each test suite which JSON file to use and which device to run our tests in.

To get to know how to use this project, go to our wiki: https://github.com/AntoData/appium-framework/wiki

About

This project offers a framework for appium projects to make mobile app testing easier. The approach is similar to page object oriented Selenium frameworks, we homogenize how xpaths, ids, ... are related to page objects, how screenshots are taken and where are saved. We also provide modules and classes that automate the process to get the right c…

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published