Skip to main content

Run your first test

BrowserStack App Automate enables you to test native and hybrid mobile applications using Appium automation framework. Its easy to run your Appium tests written in PHP on real Android and iOS devices on BrowserStack. This guide will help you get started with your first test.

1. Setup

Note: If you do not have an .apk or .ipa file and are looking to simply try App Automate, you can download and test using our sample Android app or sample iOS app.

2. Upload your app

Upload your Android app (.apk or .aab file) or iOS app (.ipa file) to BrowserStack servers using our REST API. Here is an example cURL request to upload the app :

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

A sample response for the above request is shown below:

{
    "app_url":"bs://j3c874f21852ba57957a3fdc33f47514288c4ba4"
}

Note the value of app_url returned in the API response (bs://j3c874f21852b..... in the above example). This value will be used later to set the app capability to specify application under test in your Appium test scripts.

Note:
  1. App upload will take a few seconds to about a minute depending on the size of your app. Do not interrupt the cURL command until you get the response back.
  2. If you upload an iOS app, we will re-sign the app with our own provisioning profile to be able to install your app on our devices during test execution.

3. Setup and run your test

In this step, you will learn how to configure your Appium test script using desired capabilities to test remotely on BrowserStack’s real device cloud. You will need to make the following changes in your PHP test script :

  • Specify the application under test using the app capability. Use the app_url value returned at the time of app upload (Step 2) to set this capability.
  • Specify the real Android or iOS device you want to test on using the device capability.
  • In order to initialize an Appium driver, use a remote BrowserStack URL along with your BrowserStack access credentials as shown below :
      https://YOUR_USERNAME:YOUR_ACCESS_KEY@hub-cloud.browserstack.com/wd/hub
    

If you are using our Sample App, the sample test below will install the Sample App (Wikipedia App) on the device, search for ‘browserstack’ and asserts for the list of results. If you are using your own app, modify the code as per your test cases. Copy the code below into your editor, and run the test from the command-line interface.

<?php

    require_once('vendor/autoload.php');
    use Facebook\WebDriver\Remote\DesiredCapabilities;
    use Facebook\WebDriver\Remote\RemoteWebDriver;
    use Facebook\WebDriver\WebDriverBy;

    $caps = array(
        "app" => "<app_url>",
        "device" => "Google Pixel 3",
        "name" => "Bstack-[Php] Sample Test",
        "build" => "Bstack-[Php] Sample Build"
    );

    $driver = RemoteWebDriver::create("https://"+"YOUR_USERNAME"+":"+"YOUR_ACCESS_KEY"+"@hub-cloud.browserstack.com/wd/hub", $caps);

    $search_element = $this->elements($this->using('accessibility id')->value('Search Wikipedia'));
    $search_element->click();
    $driver->keys("BrowserStack");
    sleep(2);

    # The web_driver->quit() statement is required, otherwise the test continues to execute, leading to a timeout.
    $web_driver->quit();
?>

Modify the code as per your test cases if you are using your own app. Copy the code below into your editor, and run the test from the command-line interface.

<?php

    require_once('vendor/autoload.php');
    use Facebook\WebDriver\Remote\DesiredCapabilities;
    use Facebook\WebDriver\Remote\RemoteWebDriver;
    use Facebook\WebDriver\WebDriverBy;

    $caps = array(
        "app" => "<app_url>",
        "device" => "iPhone 11 Pro",
        "name" => "Bstack-[Php] Sample Test",
        "build" => "Bstack-[Php] Sample Build"
    );

    $driver = RemoteWebDriver::create("https://"+"YOUR_USERNAME"+":"+"YOUR_ACCESS_KEY"+"@hub-cloud.browserstack.com/wd/hub", $caps);

    # Your app related code

    # The web_driver->quit() statement is required, otherwise the test continues to execute, leading to a timeout.
    $web_driver->quit();
?>

4. Viewing test results

You can access results of your test sessions on the App Automate dashboard as well as using our REST API. You can drill down into the details of a specific test session to view its execution details and debugging information such as video recording, network logs and device logs.

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
Talk to an Expert