Selenide-TestNG-Selenium-Sample

Java

Prerequisites

  1. Install and set environment variable for java.
     install maven
    

Run your First Test

  1. Clone the Selenide-testng-Sample repository.
git clone https://github.com/LambdaTest/selenide-testng-sample
  1. Next get into Selenide-testng-Sample folder, and import Lamabdatest Credentials. You can get these from lambdatest automation dashboard.

    For Linux/macOS::

export LT_USERNAME="YOUR_USERNAME"
export LT_ACCESS_KEY="YOUR ACCESS KEY"

For Windows:

set LT_USERNAME="YOUR_USERNAME"
set LT_ACCESS_KEY="YOUR ACCESS KEY"

Step 3. Make sure to install the mandatory Selenium dependencies for Maven by running the below command.

mvn compile

Step 3. Run your first single test.

mvn verify -P single

Result of the Test

You can see the test running on LambdaTest Automation Dashboard altext

Run Parallel Test

One of the most important features of LambdaTest Selenium grid is the ability to run your test cases in parallel. To run parallel test.

mvn test -P parallel

Result of the Parallel Test

altext

Executing Test Suite In Selenide Automation Framework

Run your entire Java Selenide test suite by running the below command.

mvn test -P suite

Result of the Testsuite

altext

altext

Testing Locally Hosted or Privately Hosted Projects

To help you perform cross browser testing of your locally stored web pages, LambdaTest provides an SSH(Secure Shell) tunnel connection with the name Lambda Tunnel. With Lambda Tunnel, you can test your locally hosted files before you make them live over the internet. You could even perform cross browser testing from different IP addresses belonging to various geographic locations. You can also use LambdaTest Tunnel to test web-apps and websites that are permissible inside your corporate firewall.

  • Set tunnel value to True in test capabilities

OS specific instructions to download and setup tunnel binary can be found at the following links.

After setting tunnel you can also see the active tunnel in our LambdaTest dashboard:

tunnel active

Important Note:

Some Safari & IE browsers, doesn't support automatic resolution of the URL string "localhost". Therefore if you test on URLs like "http://localhost/" or "http://localhost:8080" etc, you would get an error in these browsers. A possible solution is to use "localhost.lambdatest.com" or replace the string "localhost" with machine IP address. For example if you wanted to test "http://localhost/dashboard" or, and your machine IP is 192.168.2.6 you can instead test on "http://192.168.2.6/dashboard" or "http://localhost.lambdatest.com/dashboard".

About LambdaTest

LambdaTest is a cloud based selenium grid infrastructure that can help you run automated cross browser compatibility tests on 2000+ different browser and operating system environments. LambdaTest supports all programming languages and frameworks that are supported with Selenium, and have easy integrations with all popular CI/CD platforms. It's a perfect solution to bring your selenium automation testing to cloud based infrastructure that not only helps you increase your test coverage over multiple desktop and mobile browsers, but also allows you to cut down your test execution time by running tests on parallel.

Resources