Oxygen for Mobile Installation
Oxygen can run automation scripts on mobile devices (Native and Mobile Web, iOS and Android).
Last updated
Was this helpful?
Oxygen can run automation scripts on mobile devices (Native and Mobile Web, iOS and Android).
Last updated
Was this helpful?
To create and execute mobile test automation in Oxygen, we'll need to install and configure a few things:
Install Appium Desktop.
Install Android Studio and SDK.
Configure Environment Variables.
Recording can be done using specially build Appium Desktop version with added recording support for Oxygen.
Appium Server:
Appium Inspector:
Android Studio:
Now that we've installed android studio, we have to create an environment variable called ANDROID_HOME and give it the path to the SDK folder which was installed with android studio.
Open the SDK folder and copy it's path, it should be here: C:\Users\%UserProfile%\AppData\Local\Android\Sdk
Open the search bar and type environment variables then press enter
Under system variables, click on new, and set variable name to ANDROID_HOME, then paste the path to SDK inside vale value, as seen below:
4. now we have to set two additional paths, one to platform-tools and another one to tools
under system variables, double click on path and click on new, now copy the path to platform-tools folder and paste it inside, do the same to the tools folder, seen below:
Now in order to check if adb is configured open command line, and type adb devices and press Enter. You will now receive a list of all available devices that are connected to your machine.
In order to work with Appium Desktop - you must enable USB debugging , which is only possible while in Developer mode (No worries, it does not harm your phone). You can do it simply by following these steps:
Go to settings screen
Click 'System settings'
Click 'About phone'
Tap 10 times on 'Build number' - and you should receive a message the developer options are unlocked.
Go to Developer options (located differently on different phones).
Toggle 'USB debugging' on.
And that's it, your phone is now ready for mobile automation!
In order to see that everything worked well , you need to write the following command in your command line: 'adb devices'.
The list of all devices attached to your computer will be shown.
If you already have Android Studio installed, follow these instructions:
Add platform-tools
to your path
Refresh your bash profile (or restart your terminal app)
Start using adb
Now in order to check if adb is configured open command line, and type : 'adb devices' and press Enter. You will now receice a list of all available devices that are connected to your machine.
In order to work with Appium Desktop - you must enable USB debugging , which is only possible while in Developer mode (No worries, it does not harm your phone). You can do it simply by following these steps:
Go to settings screen
Click 'System settings'
Click 'About phone'
Tap 10 times on 'Build number' - and you should receive a message the developer options are unlocked.
Go to Developer options (located differently on different phones).
Toggle 'USB debugging' on.
And that's it, your phone is now ready for mobile automation!
In order to see that everything worked well , you need to write the following command in your command line: 'adb devices'.
The list of all devices attached to your computer will be shown.
Note: If you have wish to save disk space you may try to Download and install only the SDK tools instead of the entire Android studio: Scroll a little to the bottom and you will see SDK tools download. We do not recommend that since users sometimes encounter issues configuring appium and ADB without the entire Android Studio.
Setting up ADB on a MAC machine instructions may be found here: .