How To Run Selenium Test Scripts?

Hari Sapna Nair

Posted On: May 31, 2024

view count488970 Views

Read time11 Min Read

Selenium comes first to mind when considering automation testing. Automation testers commonly use Selenium, one of the best test automation frameworks, to create test scripts.

In this blog, We will take you through the basics of setting up Selenium in the system and then explain how to write Selenium test scripts in Java. But, before that, let us briefly introduce Selenium, its components, and features.

What is Selenium?

Selenium is an open-source automation testing framework widely used to automate web browser interactions. It helps test multiple browsers, languages, and operating systems. In addition, it is compatible with various programming languages like Java, Python, Ruby, and C#.

Furthermore, it supports various browsers like Chrome, Firefox, Safari, Edge, and Opera. It can also be integrated with automation testing frameworks like JUnit and TestNG.

Check out our post on A Guide To Download Selenium and Set It Up On Multiple IDEs to set it up on your system with your favorite IDE!

Info Note

Automate your tests on a Selenium based cloud Grid of 3000+ real browsers and devices. Try LambdaTest Today!

What is a Test Script?

A test script is a set of instructions in a programming language defining the steps to perform a specific test. A test script automates the testing process by simulating user interactions with the software under test, such as clicking buttons, entering text, and verifying outcomes.

Test scripts ensure that software behaves as expected and meets the specified requirements. They help automate repetitive testing tasks, improve efficiency, and provide consistent and reliable results across different test executions.

To learn about test scripts, check out our Test Scenario: Detailed Guide With Templates And Samples post.

Prerequisites for Installing Selenium

We must have a few components installed and configured on our system before configuring Selenium; the following is the list of components that must be installed and configured.

Java Development Kit (JDK)

JDK is required for Selenium testing in Java because it provides the necessary runtime environment, compilation tools, and compatibility with Selenium WebDriver and Java-based IDEs. The steps to setup JDK in Windows are as follows:-

  1. Set an environment variable JAVA_HOME with the value of the JDK installation location in the system.
  2. In the Path variable, update the path to the bin folder of the JDK installation folder.
  3. Ensure successful installation of Java by using the java --version command in the command prompt.

Java Development Kit (JDK)

Eclipse IDE (Integrated Development Environment)

IDEs provide developers with the tools and features necessary for writing and executing Selenium test scripts in Java, making the development process more efficient and productive.

We will use the Eclipse IDE; however, you may use any IDE of your choice. Some popular IDEs used for Java development are Eclipse, Visual Studio Code, IntelliJ IDEA, etc.

Selenium Client and WebDriver Language Bindings[Choose Java]

You have two options: use the link to get it directly from the official website and add the language bindings as external jar files to your project, or use a build automation tool like Maven to handle it for you. We will use Maven to automatically download and configure the dependencies into the project to keep things simple.

Configuring Selenium Client and Webdriver with Eclipse

You can manually configure Selenium Client and WebDriver with Eclipse as external jar files. You may skip this if you want to learn how to do it using Maven, which is being discussed in the blog.

Configuring Selenium Client and WebDriver with Maven

Let us see the steps to configure the project with Maven.

Creating Maven Project

  1. Follow the guide on Selenium Maven Dependency Tutorial to download and configure Maven.
  2. Add MAVEN_HOME system variable and update it with the Maven installed folder path.
  3. Verify the successful installation of Maven by using the mvn --version in the command prompt.
  4. Creating Maven Project

  5. In the pom.xml file, we must add all the dependencies required to create and run our first Selenium test.
  6. We need to add the Selenium dependency below to create our tests.

Here, update the version according to the library version being used.

Learn How To Create Selenium Maven Project In Eclipse with the help of our YouTube video.

How to Run Your First Selenium Test Script in Java?

Consider a scenario where we need to write a Selenium test script to automate navigating to the iPhone’s Product page on LambdaTest Playground. LambdaTest Playgroud is a demo website hosted by LambdaTest for learners like you to run your test scripts and learn the fundamental concepts in software testing.

LambdaTest Playgroud

The steps to writing Selenium test scripts in Java are as follows:-

  1. Initialize WebDriver: To automate the interactions with the browser we must initialize the WebDriver of our choice. In this example, we will use the ChromeDriver() constructor to initialize a new instance of the ChromeDriver, which is then used to automate interactions with the Chrome browser.
  2. Various browser initialization are as follows:-

    • Chrome
    • Firefox
    • Edge
    • Internet Explorer
  3. Navigate to URL: Navigates to the specified URL, which in this example is the LambdaTest Playground: “https://ecommerce-playground.lambdatest.io/“.
  4. Find Element: Find the element using the findElement(By.xpath()) method which locates a WebElement on the web page using XPath. In this case, it’s searching for an < a > element (anchor tag) containing the text “iPhone”.
  5. To learn more about the Selenium locators checkout our blog, Different Types of Locators in Selenium WebDriver.

  6. Perform Action: The click() method is called on the WebElement to simulate a click action on the “iPhone” link.
  7. Close WebDriver: Once the tests are executed, we need to close the browser instance, which is considered the best practice in finishing the test execution.
  8. We can close the browser using two different WebDriver commands:

    • close(): Closes the current browser window.
    • quit(): Quit all the instantiated browser instances.

Let us now look at the Java code to perform the above-mentioned operation.

Code

After executing this test, the iPhone product page opens up.

iPhone product page

Running Selenium Test Script on LambdaTest

We will run the Selenium test script we wrote in Java on LambdaTest. But before that, why do we even want to do that?!

The numerous types of user environments available today make it necessary to test web applications on various browser-device combinations. However, maintaining such an extensive testing infrastructure involves substantial investment in hardware, continuous updates, and technical maintenance, which can be resource-intensive and inefficient. This is where LambdaTest comes into play. It is an AI-powered test orchestration and execution platform that lets us run manual and automated tests at scale with over 3000+ real devices, browsers, and OS combinations, allowing teams to perform comprehensive cross-browser testing without the need for expensive, cumbersome infrastructure, thereby streamlining the testing process and enhancing productivity.

Now let us start implementing our Selenium scripts in LambdaTest

Step 1: To begin, you can get the value for the access token, username, and gridUrl upon registering with LambdaTest. The first step is to register on LambdaTest for free. After registration, you can find these credentials from the LambdaTest dashboard, as shown in the image below.

lambdatest dashboard

Step 2: Once you have the credentials, you can declare your testing environment’s preferred capabilities. LambdaTest has a Desired Capabilities Generator that will provide you with the capabilities based on your selection of OS, browser version, and resolution.

Desired Capabilities Generator

Although in this article we will be using the Google Chrome browser, you can choose any other browser and just need to call the respective WebDriver (like: webdriver.Edge(), edgedriver.Firefox()); the rest of the code will remain the same.

Google Chrome browser

Step 3: Now let us start implementing our tests in the LambdaTest grid. We shall use the same test scenario used earlier.

Let us run our login test in Chrome Browser. Use the Desired Capabilities Generator for setting the desired capabilities in our tests.

Code

Note: For using the Microsoft Edge browser replace “ChromeOptions” with “EdgeOptions”. The complete code for the Microsoft Edge browser can be found here.

Step 4: Once this test is executed successfully. We can track our test case on the LambaTest dashboard as shown in the image below. We can see the tests run in the grid and the video recording captured during the test execution. This will help us identify the exact issue in case of any test failure.

identify the exact issue

The build results can be found on the automation page.

automation page

In the detailed view of the build, we can see the video recording captured during the test execution.

All the provided code snippets can be found at this GitHub repository: Selenium-Test-Scripts. For the Python code, check out the Python folder.

selenium advanced certification

Conclusion

For any software tester who wants to guarantee the functioning and dependability of online applications, the ability to run Selenium test scripts is essential. We started by learning the basics of Selenium and the function of test scripts. Next, in order to ensure a quick setup, we looked at the requirements for installing Selenium and how to set it up with Maven. After that, we went over how to execute your first Java Selenium test script, which gave you a strong basis for automating browser-related tasks. Lastly, we covered how to use LambdaTest to run Selenium scripts on a cloud-based platform, allowing for cross-browser and scalable testing. You can effectively use Selenium’s power to improve your testing procedures and produce reliable web applications by following these steps.

Frequently Asked Questions (FAQs)

What is a Selenium test script?

A Selenium test script is a set of instructions written in a programming language (such as Java, Python, etc.) using the Selenium WebDriver API to automate interactions with web browsers and test web applications.

What are the best practices for writing Selenium test scripts?

Some best practices for writing Selenium test scripts include using clear and descriptive element locators, organizing test code into reusable functions or classes, implementing explicit waits to handle synchronization issues, etc.

What are the common actions performed in Selenium test scripts?

Common actions performed in Selenium test scripts include navigating to URLs, interacting with web elements (e.g., clicking buttons, filling out forms), verifying text or element presence, handling alerts and pop-ups, and performing assertions to verify expected outcomes.

Author Profile Author Profile Author Profile

Author’s Profile

Hari Sapna Nair

Sapna works as a Content Writer at LambdaTest. An avid reader and passionate developer, she embraces the role of a tech blogger who loves to share her wealth of knowledge. Firmly believing in personal growth through uplifting others, she has chosen blogging as her medium for this purpose. Always eager to learn more and connect with new people, she remains ready to explore new horizons and engage with diverse audience.

Blogs: 8



linkedintwitter