How to use Selenium to inject JavaScript code into a website on Chrome

A guide on how to use Selenium in Java to inject JavaScript code into a webpage on the Chrome browser. This article will help you understand how to interact with the DOM via JavaScript.

In this article, we will use Selenium WebDriver to control the Chrome browser and inject JavaScript code into a webpage. This allows us to perform automated interactions with the website.

Java Code

import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

public class ExecuteJavaScript {
    public static void main(String[] args) {
        // Set the path to the ChromeDriver
        System.setProperty("webdriver.chrome.driver", "path/to/chromedriver");

        // Initialize WebDriver for Chrome
        WebDriver driver = new ChromeDriver();

        try {
            // Open the webpage
            driver.get("https://example.com");

            // Initialize JavascriptExecutor
            JavascriptExecutor js = (JavascriptExecutor) driver;

            // JavaScript code to inject
            String script = "alert('Hello, this is a JavaScript alert!');";

            // Inject JavaScript code into the webpage
            js.executeScript(script);

            // Wait a moment to see the alert
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        } finally {
            // Close the browser
            driver.quit();
        }
    }
}

Detailed explanation:

  1. import org.openqa.selenium.*;: Import necessary Selenium libraries.
  2. System.setProperty("webdriver.chrome.driver", "path/to/chromedriver");: Set the path to ChromeDriver.
  3. WebDriver driver = new ChromeDriver();: Initialize WebDriver for Chrome.
  4. driver.get("https://example.com");: Open the target webpage.
  5. JavascriptExecutor js = (JavascriptExecutor) driver;: Initialize the JavascriptExecutor to execute JavaScript code.
  6. String script = "alert('Hello, this is a JavaScript alert!');";: The JavaScript code to inject.
  7. js.executeScript(script);: Execute the JavaScript code on the webpage.
  8. Thread.sleep(2000);: Pause the program for 2 seconds to view the alert.
  9. driver.quit();: Close the browser after completion.

System requirements:

  • Java Development Kit (JDK) 8 or higher.
  • Selenium WebDriver.
  • Compatible ChromeDriver with your current version of Chrome.

How to install the libraries:

  1. Download Selenium WebDriver from the official site https://www.selenium.dev/downloads/
  2. Download ChromeDriver from the official site https://sites.google.com/a/chromium.org/chromedriver/downloads
  3. Add the libraries to your Java project.

Tips:

  • Ensure that the version of ChromeDriver is compatible with the version of Chrome you are using.
  • Experiment with other JavaScript code snippets to gain a deeper understanding of DOM interactions.
Tags: Java, Selenium


Related

Generating Captcha in Java

A comprehensive guide on how to create a Captcha in Java to protect your application from automated activities and enhance security.
How to DELETE data from a MySQL database using Java

A guide on how to use Prepared Statements in Java to delete data from a table in a MySQL database safely and effectively.
Read Excel Content Using Apache POI in Java

A detailed guide on reading Excel file content in Java using the Apache POI library. This article provides sample code, a detailed explanation of each line, and steps for installing the necessary libraries.
Guide to creating a multi-image upload form in Java

A step-by-step guide on how to create a multi-image upload form using Java with Spring Boot and the `Commons FileUpload` library. This tutorial covers setup and code examples.
How to Get JSON Data from API Using Java

This guide will show you how to use Java to send a GET request to an API and read the returned JSON data using HttpURLConnection.
List of Common Functions When Using Selenium Chrome in Java

This article lists commonly used functions in Selenium with ChromeDriver in Java, helping users quickly grasp basic operations for browser automation.
Writing data to an Excel file using Java

A guide on how to write data to an Excel file using Java, leveraging the Apache POI library for effective and simple manipulation of Excel files.
JSON Web Token (JWT) Authentication in Java

This guide demonstrates how to use JSON Web Token (JWT) to authenticate users in a Java application. Specifically, we'll use JWT to secure APIs in a Spring Boot application, covering token generation, validation, and securing endpoints.
Create a Simple Chat Application Using Socket.IO in Java

A detailed guide on how to create a simple chat application using Java and Socket.IO. This article will help you understand how to set up a server and client for real-time communication.
How to Post Data to API Using Java

This article guides you on how to post data to an API using the POST method in Java, utilizing the HttpURLConnection and org.json library to handle JSON data.

main.add_cart_success