top of page
Search

How to run selenium automated tests in Browserstack in cloud

Writer: Dev Raj SinhaDev Raj Sinha

Running Selenium automated tests in BrowserStack involves configuring your tests to use BrowserStack as the Selenium Grid. Here's a step-by-step guide to running Selenium tests on BrowserStack's cloud infrastructure:


Prerequisites:


1. BrowserStack Account: You need a BrowserStack account. If you don't have one, you can sign up for a free trial on their website.

2. Selenium WebDriver Tests: You should have your Selenium WebDriver tests ready.

3. BrowserStack Credentials: Obtain your BrowserStack username and access key, which can be found in your BrowserStack account settings.


Step 1: Update Your WebDriver Configuration


Update your WebDriver configuration to use BrowserStack as the remote WebDriver grid. Set the `remote` URL to BrowserStack's hub URL and provide the desired capabilities, including your BrowserStack username and access key.


Example for Java (using TestNG):


import org.openqa.selenium.WebDriver;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.RemoteWebDriver;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import java.net.URL;

public class BrowserStackExample {

    private WebDriver driver;

    @BeforeMethod
    public void setUp() throws Exception {
        DesiredCapabilities capabilities = new DesiredCapabilities();
        capabilities.setCapability("browser", "Chrome");
        capabilities.setCapability("browser_version", "latest");
        capabilities.setCapability("os", "Windows");
        capabilities.setCapability("os_version", "10");
        capabilities.setCapability("project", "Your Project Name");
        capabilities.setCapability("build", "Your Build Name");
        capabilities.setCapability("name", "Test Name");

        // Set BrowserStack credentials
        capabilities.setCapability("browserstack.user", "your_browserstack_username");
        capabilities.setCapability("browserstack.key", "your_browserstack_access_key");

        driver = new RemoteWebDriver(new URL("https://hub-cloud.browserstack.com/wd/hub"), capabilities);
    }

    @Test
    public void testExample() {
        driver.get("https://www.example.com");
        // Your test code here
    }
}

Step 2: Run Your Tests


After updating your test code, you can run your tests using your preferred test runner or build tool. For TestNG, you can run tests using the TestNG XML file or directly from your IDE.


Step 3: View Test Results in BrowserStack Dashboard


Once your tests are executed, you can view the results, screenshots, and other details on the BrowserStack dashboard. The results will provide insights into the test execution, including passed, failed, and skipped tests.


Please make sure to replace `"your_browserstack_username"` and `"your_browserstack_access_key"` with your actual BrowserStack credentials.


BrowserStack offers various configurations and devices for testing. You can customize your desired capabilities to match your specific testing requirements. For more information and advanced capabilities, refer to BrowserStack's official documentation and their capabilities generator tool.

 
 
 

Recent Posts

See All
Never Miss a Post. Subscribe Now!

Find new exciting ways to dominate the IT Automation industry

Thanks for submitting!

bottom of page