Skip to main content

Integrate BrowserStack Automate with ACCELQ

This document guides you with the step by step process to execute ACCELQ tests on BrowserStack.

Introduction

ACCELQ is an AI-Powered Codeless Test Automation tool. By integrating ACCELQ with BrowserStack, you can run the ACCELQ recorded test scripts on 3000+ real devices and desktop browsers.

In this guide, you’ll learn how to:

Pre-requisites

  • BrowserStack Username and Access Key to set up the BrowserStack integration. After logging into your BrowserStack account, visit the Settings page and copy your Username and Access Key. You can also sign up for a free trial here.
  • A registered account at ACCELQ. You can sign up for a free trial here.
  • ACCELQ Local Agent.
  • A previously recorded ACCELQ test.

Run ACCELQ tests on BrowserStack

ACCELQ provides an ability to execute tests on Browser Stack through your Local Agent integration. As part of configuration, you select BrowserStack as your device cloud provider and invoke your application browser remotely, but the execution and results workflows remain the same. You continue to manage the test execution cycle through ACCELQ.

Running your ACCELQ tests involves:

Configure agent properties

You can configure the agent properties of your Local Agent and set BrowserStack-specific details as follows:

  1. In the toolbar doc, click the ACCELQ Local Agent icon and click Open Agent Dashboard.
    ACCELQ Local Agent
  2. Create or edit an existing Agent configuration.
  3. Provide the Agent Name.
  4. In Parallel tests per Job, provide the number of parallels that your Automate plan supports.
  5. Select the Use external device provider for Web check box.
  6. Under Web Device Provider, select BrowserStack.
  7. Set your username and access key details in Browser Stack Username and Browser Stack Access Key respectively.
    Agent Configuration

After you login to your ACCELQ account, click Resources, and then click Local Agents to view your Local Agent configuration as follows: Local Agent

Configure driver profile

Create a Driver Profile to set capabilities. You can add any BrowserStack-specific capabilities.

  1. Login to your ACCELQ account.
  2. Click Resources, and then click Driver Profiles.
  3. On the Driver Profiles tab, click Create Driver Profile.
  4. Provide the Profile name.
  5. In the App Type drop down, select Web.
  6. In the Additional Configuration section, provide the capabilities in JSON format as follows:
     {
         "bstack:options": {
             "debug": "true",
             "networkLogs": "true"
         }
     }
    
  7. Click Save to save your driver profile.

On the Driver Profiles tab, your Driver Profile is created as follows:
Driver profiles

Run your first test

  1. Login to your ACCELQ account.
  2. Click Navigator, and then click Scenarios.
  3. Open the scenario that you want to run.
  4. Click Run to proceed with the execution of the scenario.
  5. In the Run Automation Test screen, under AGENT/HOST section, select the Local Agent that you had configured in the Configure agent properties section.
    Run automation test
  6. In the WEB OS & BROWSER section, select the os/browser combination on which you want to run your test.
  7. In Driver Profile drop-down, select the Driver Profile that you had created in the Configure driver profile section.
    Run automation test
  8. Click Run.

You can see the execution of your scenario on the Automate dashboard.
BrowserStack dashboard

Run tests on Mobile Browsers

If you want to run tests on mobile browsers, you need to create a specific Driver Profile to run your tests.

  1. Create a new Driver Profile by following the steps in the Configure driver profile section.
  2. For this driver profile, in the Additional Configuration section, provide the mobile-specific capabilities such as deviceName and osVersion in JSON format as follows.
     {
         "bstack:options": {
             "osVersion" : "14",
             "deviceName" : "iPhone 12",
             "realMobile" : "true",
             "debug": "true",
             "networkLogs": "true"
         }
     }
    

    The mobile-specific driver profile is configured as seen.
    Create driver profile

  3. Save the driver profile.
  4. Click Navigator, and then click Scenarios.
  5. Open the scenario that you want to run.
  6. Click Run to proceed with the execution of the scenario.
  7. In the Run Automation Test screen, under AGENT/HOST section, select the Local Agent that you had configured in the Configure agent properties section.
    Run automation test
  8. In Driver Profile drop-down, select the Driver Profile that you created in step 1.The OS and Browser selected is ignored because of the details provided in the driver profile.
    Run automation test
  9. Click Run.

You can see the execution of your scenario on a mobile browser on the Automate dashboard.
BrowserStack dashboard

Test privately hosted websites

You can test your websites that are hosted privately using the BrowserStack Local testing feature. This section will guide you through enabling Local Testing, and then using it to test websites on your work machines, CI/CD machines/nodes, and other private network configurations.

Enabling Local Testing with Automate is a two-step process:

  1. Establishing a Local Testing connection.
  2. Configuring ACCELQ test scripts so they run through the Local Testing connection.

Establishing a Local Testing connection

You can set up the Local testing connection between your system and BrowserStack cloud using the following steps:

  1. Download the appropriate binary for your system:
  2. Unzip the binary to a folder/directory on your machine.
  3. Open your command-line interface and navigate to the folder containing the Local binary.
  4. Run the binary using the following command:
./BrowserStackLocal --key YOUR_ACCESS_KEY
BrowserStackLocal.exe --key YOUR_ACCESS_KEY

Your machine and BrowserStack Cloud remain connected unless you explicitly end the connection since the Local Testing connection is persistent. Hence, close the connection after test execution is complete.

The Local Testing setup might differ slightly based on your requirements, for example, proxy settings, restricting connections to certain domains, etc. Check out the complete list of flags to set up Local Testing for different environments or network configurations.

Configure tests to run with Local Testing connection

  1. Create a new driver profile by following the steps mentioned in the Configure driver profile section.
  2. For this driver profile, in the Additional Configuration section, provide the mobile-specific capabilities such as local in JSON format as follows.
     {
         "bstack:options": {
             "local": "true"
         }
     }
    

    The local-specific driver profile is configured as seen.
    Create driver profile

  3. Save the driver profile.
  4. Click Navigator, and then click Scenarios.
  5. Open the scenario that tests a locally hosted website.
  6. Click Run to proceed with the execution of the scenario.
  7. In the Run Automation Test screen, under AGENT/HOST section, select the Local Agent that you had configured in the Configure agent properties section.
    Run automation test
  8. In Driver Profile drop-down, select the Driver Profile that you created in step 1.
    Run automation test
  9. In the WEB OS & BROWSER section, select the os/browser combination on which you want to run your test. If you want to run tests on mobile browsers, create a mobile-specific driver profile that includes the local capability.
  10. Click Run.

You can see the execution of your local scenario on a mobile browser on the Automate dashboard.
BrowserStack dashboard

Run multiple tests in parallel

Prerequisites:

  • Edit your Agent configuration to set the Parallel tests per Job to the number of parallels that your account supports.
    Agent Configuration
  • A Test Scenario that includes multiple test cases.

To run your parallel tests:

  1. Click Navigator, and then click Scenarios.
  2. Open the scenario that includes multiple test cases.
  3. Click Run to proceed with the execution of the scenario.
  4. In the Run Automation Test screen, under AGENT/HOST section, select the Local Agent that includes the Parallel test per Job set to the supported parallels.
  5. In Driver Profile drop-down, select the required Driver Profile.
  6. In the PARALLEL EXECUTION section, set the Parallel Thread Count to the number of parallels you want to run.
    Run automation test
  7. Click Run.

You can see the execution of your scenario with multiple tests running in parallel on the Automate dashboard.
BrowserStack dashboard

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