Skip to content

Latest commit

 

History

History
73 lines (50 loc) · 2.92 KB

File metadata and controls

73 lines (50 loc) · 2.92 KB

selenide-browserstack

Selenide Integration with BrowserStack.

BrowserStack Logo

Using Maven

Setup

Running your tests

  • To run a parallel tests, run mvn test -P sample-test
  • To run local tests, run mvn test -P sample-local-test
  • To run a full suite of tests with Cross-browser Testing, run mvn test -P suite

Understand how many parallel sessions you need by using our Parallel Test Calculator

Using Gradle

Prerequisites

  • If using Gradle, Java v9+ is required.

Setup

Run sample build

  • To run the test suite having cross-platform with parallelization, run gradle sampleTest
  • To run local tests, run gradle sampleLocalTest

Understand how many parallel sessions you need by using our Parallel Test Calculator

Integrate your test suite

This repository uses the BrowserStack SDK to run tests on BrowserStack. Follow the steps below to install the SDK in your test suite and run tests on BrowserStack:

  • Following are the changes required in build.gradle -

    • Add implementation 'com.browserstack:browserstack-java-sdk:latest.release' in dependencies
    • Fetch Artifact Information and add jvmArgs property in tasks SampleTest and SampleLocalTest :
    def browserstackSDKArtifact = configurations.compileClasspath.resolvedConfiguration.resolvedArtifacts.find { it.name == 'browserstack-java-sdk' }
    
    task sampleTest(type: Test) {
      useTestNG() {
        dependsOn cleanTest
        useDefaultListeners = true
        suites "config/sample.testng.xml"
        jvmArgs "-javaagent:${browserstackSDKArtifact.file}"
      }
    }
    
  • Install dependencies gradle build

Notes

  • You can view your test results on the BrowserStack Automate dashboard

  • To test on a different set of browsers, check out our platform configurator

  • You can export the environment variables for the Username and Access Key of your BrowserStack account

    export BROWSERSTACK_USERNAME=<browserstack-username> &&
    export BROWSERSTACK_ACCESS_KEY=<browserstack-access-key>