Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Its quite simple to execute a single test on both Android and iOS. All you need to do is use ifAndroid & ifiOS keywords for the respective steps and you are good to go.

Instructions

  1. Click on Design on left panel

  2. Click on Test Case option

  3. Create or select an existing module

  4. Click on Add Test button

  5. Enter the meta data for Test Case Details

    1. Objective

    2. Priority

    3. Designer

    4. Reviewer

    5. Type

    6. Category

    7. Test Path

  6. Click on Save

  7. Click on Test Steps tab

  8. Create the test case using various action keywords
    If you wish to execute a certain set of instructions only on Android, use ifAndroid keyword & if you wish to execute a certain set of instructions only on iOS, use ifIos keyword

    Example :
    <common steps to execute>
    ifAndroid
    <steps to execute on Android>
    endif
    ifIos
    <steps to execute on iOS>
    endif
    <common steps to execute>

  9. Save the test case.

To execute the test case, you can either execute the test case locally or simply add the created test to a Test suite and then execute it remotely.

 

Creating Test Suite

Execute Automated Test

Debugging Tests

Remote Execution

  • No labels