Skip to content

Latest commit

 

History

History
139 lines (106 loc) · 4.53 KB

lambdatest-running-your-first-selenium-test.md

File metadata and controls

139 lines (106 loc) · 4.53 KB
id title hide_title sidebar_label description keywords url site_name slug
lambdatest-running-your-first-selenium-test
Run Your First Test on LambdaTest using Selenium
false
Running Your First Job
Learn how to run your first Selenium test on LambdaTest's cross-browser testing platform. Step-by-step guide for setup and execution on 3000+ browsers.
Automation Platform
Dashboard
Automation Testing
Lambdatest Dashboard
LambdaTest
lambdatest-running-your-first-selenium-test/

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import CodeBlock from '@theme/CodeBlock'; import {YOUR_LAMBDATEST_USERNAME, YOUR_LAMBDATEST_ACCESS_KEY} from "@site/src/component/keys";

<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify({ "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.lambdatest.com" },{ "@type": "ListItem", "position": 2, "name": "Support", "item": "https://www.lambdatest.com/support/docs/" },{ "@type": "ListItem", "position": 3, "name": "Inside LambdaTest Automation Platform", "item": "https://www.lambdatest.com/support/docs/lambdatest-running-your-first-selenium-test/" }] }) }} ></script>

LambdaTest provides a powerful Selenium Grid that allows you to perform automated cross-browser testing on over 3000+ real browsers and operating systems. This guide will walk you through the process of setting up and running your first Selenium test on the LambdaTest platform.

Prerequisites

Before you begin, ensure you have the following:

Run your first test

Step 1: Configure Your Test Suite

:::tip Sample repo Download or Clone the code sample for the TestNG from the LambdaTest GitHub repository to run the tests on our Standard Grid.

<img loading="lazy" src={require('../assets/images/icons/github.png').default} alt="Image" className="doc_img"/> View on GitHub :::

git clone https://github.com/LambdaTest/java-testng-selenium
cd java-testng-selenium

Step 2: Update the dependencies

Before proceeding forward, run the below command to update the outdated dependencies

mvn versions:display-dependency-updates

Step 3: Setup your LambdaTest Credentials

In your terminal (as per your respective Operating System), run these command to setup your LambdaTest credentials.

You can see your credentials below if you have logged into our platform.

{`export LT_USERNAME="${ YOUR_LAMBDATEST_USERNAME()}" export LT_ACCESS_KEY="${ YOUR_LAMBDATEST_ACCESS_KEY()}"`}
{`set LT_USERNAME="${ YOUR_LAMBDATEST_USERNAME()}" set LT_ACCESS_KEY="${ YOUR_LAMBDATEST_ACCESS_KEY()}"`}

Step 4: Execute your test

Run the following command to execute your test on LambdaTest

{`mvn test -D suite=single.xml`}
{`mvn test -D suite=parallel.xml`}

Monitor the Test Execution

Visit the LambdaTest Web Automation page to check the status of your test execution.

<img loading="lazy" src={require('../assets/images/selenium/running-first-test/run-first-test.png').default} alt="Image" className="doc_img"/>