Skip to main content
Transform your testing process with: Real Device Features, Company-wide Licences, & App Percy

Katalon Studio

Run your tests for mobile app (Appium) generated using Katalon Studio, on BrowserStack’s Real Device Cloud.

Introduction

Katalon Studio allows developers and QA’s to set-up, create, and manage automated mobile tests. With Browserstack+Katalon, you can execute your automated tests on a range of real devices offered by Browserstack.

Android App

Get Started

Download Katalon Studio by signing up for a free account at Katalon’s website. After installation, login to the Katalon Studio using your account credentials and create a new Sample Android Mobile Tests Project. The process has been detailed for the sample app and test cases provided by Katalon, you can replace the app with your own app and make changes in your test cases accordingly.

Creating new sample Android Mobile Tests Project

Set the project name in the ‘Name’ field and click OK

Set the project name in name field and pres OK

In the Tests Explorer window go to the folder androidapp → APIDemos.apk. This is the application which will be tested on BrowserStack.

Tests Explorer

Upload app on the BrowserStack server

Upload APIDemos.apk to BrowserStack using your account credentials (Username and Access Key). The REST API is:

curl -u "YOUR_USERNAME:YOUR_ACCESS_KEY" \
-X POST "https://api-cloud.browserstack.com/app-automate/upload" \
-F "file=@/path/to/app/file/APIDemos.apk" \
-F "custom_id=MyApp"

Sample Response:

{"app_url":"bs://f7c874f21852ba57957a3fdc33f47514288c4ba4", "custom_id":"MyApp","shareable_id":"YOUR_USERNAME/MyApp"}

On successful upload of the app on BrowserStack, an app_url will be returned which is the unique hashed ID of your uploaded app.

Configure the tests

In the Tests Explorer section in Katalon studio, go to Test Cases and open the test case named Verify Last Items In List in the script view. The highlighted portion of the code will be required to be replaced as shown below:

Verify Last Items In List The changes to be made in the code are listed below:

Replace

// Get full directory path of android application
def appPath = PathUtil.relativeToAbsolutePath(GlobalVariable.G_AndroidApp,RunConfiguration.getProjectDir())
Mobile.startApplication(appPath, false)

With

// Set the Browserstack credentials: USERNAME and ACCESS_KEY
String browserStackServerURL = "https://YOUR_USERNAME:YOUR_ACCESS_KEY@hub-cloud.browserstack.com/wd/hub";

DesiredCapabilities capabilities = new DesiredCapabilities();

capabilities.setCapability("device", "Samsung Galaxy S8");

//Set the app_url (returned on uploading app on Browserstack) in the 'app' capability
capabilities.setCapability('app', '<app_url>');

AppiumDriverManager.createMobileDriver(MobileDriverType.ANDROID_DRIVER, capabilities, new URL(browserStackServerURL));

You will also have to import a few additional packages. Example below:

import com.kms.katalon.core.appium.driver.AppiumDriverManager
import io.appium.java_client.android.AndroidDriver
import org.openqa.selenium.remote.DesiredCapabilities
import com.kms.katalon.core.mobile.driver.MobileDriverType

This is the resultant script:

Resultant script

You can also replace the existing code in Verify Last Items In List with the script and execute it. Details that need to be updated in this above script:

  1. Add your USERNAME and ACCESS_KEY.
  2. Add the app_url (bs://<hashed-id>) returned for the uploaded Android App.

Execute the test by clicking the play icon and visit the App Automate Dashboard to see your session running on Browserstack.

iOS App

Get started

Download Katalon Studio by signing up for a free account at Katalon’s website. After installation, login to the Katalon Studio using your account credentials and create a new Sample iOS Mobile Tests Project. The process has been detailed for the sample app and test cases provided by Katalon, you can replace the app with your own app and make changes in your test cases accordingly.

Creating new sample iOS Mobile Tests Project

Set the project name in the ‘Name’ field and click OK

Setting project name in Katalon Studio

In the Tests Explorer window go to the folder App → Coffee Timer-iPad Pro (9.7-inch).ipa This is the application that will be tested on BrowserStack.

Katalon IOS Test Select Coffee Timer-iPad Pro (9.7-inch).ipa file

Upload app on the BrowserStack server

Upload Coffee Timer-iPad Pro (9.7-inch).ipa to Browserstack using your account credentials (Username and Access Key). The REST API is:

curl -u "YOUR_USERNAME:YOUR_ACCESS_KEY" \
-X POST "https://api-cloud.browserstack.com/app-automate/upload" \
-F "file=@/path/to/app/file/CoffeeTimer-iPadPro(9.7-inch).ipa" \
-F "custom_id=MyApp"

Sample Response:

{"app_url":"bs://f7c874f21852ba57957a3fdc33f47514288c4ba4", "custom_id":"MyApp","shareable_id":"YOUR_USERNAME/MyApp"}

On successful upload of the app on BrowserStack, an app_url will be returned which is the unique hashed ID of your uploaded app.

Configure the Tests

In the Tests Explorer section in Katalon studio, go to Test Cases and open the file named Verify the main list in the script view. The highlighted portion of the code will be required to be replaced as shown below:

Replace the highlighted portion of the code in the script

The changes to be made in the code are listed below:

Replace

Mobile.startApplication(GlobalVariable.app_path, true)

With

// Set the Browserstack credentials: USERNAME and ACCESS_KEY
String browserStackServerURL = "https://YOUR_USERNAME:YOUR_ACCESS_KEY@hub-cloud.browserstack.com/wd/hub";

DesiredCapabilities capabilities = new DesiredCapabilities();

capabilities.setCapability("device", "iPad Mini 2019");
capabilities.setCapability("os_version", "12");

//Set the app_url (returned on uploading app on Browserstack) in the 'app' capability
capabilities.setCapability('app', '<app_url>');

AppiumDriverManager.createMobileDriver(MobileDriverType.IOS_DRIVER , capabilities, new URL(browserStackServerURL));

You will also have to import a few additional packages. Example below:

import com.kms.katalon.core.appium.driver.AppiumDriverManager
import io.appium.java_client.ios.IOSDriver
import org.openqa.selenium.remote.DesiredCapabilities
import com.kms.katalon.core.mobile.driver.MobileDriverType

This is the resultant script:

How to use MobileDriverType while creating driver

You can also replace the existing code in the Verify the main list with the script and execute it. Details that need to be updated in this above script:

  1. Add your USERNAME and ACCESS_KEY.
  2. Add the app_url (bs://<hashed-id>) returned for the uploaded iOS App.

Execute the test by clicking the play icon and visit the App Automate Dashboard to see your session running on BrowserStack.

We're sorry to hear that. Please share your feedback so we can do better

Contact our Support team for immediate help while we work on improving our docs.

We're continuously improving our docs. We'd love to know what you liked






Thank you for your valuable feedback

Is this page helping you?

Yes
No

We're sorry to hear that. Please share your feedback so we can do better

Contact our Support team for immediate help while we work on improving our docs.

We're continuously improving our docs. We'd love to know what you liked






Thank you for your valuable feedback!

Talk to an Expert
Download Copy