• Selenium Video Tutorials

Selenium WebDriver - JSON 数据文件



Selenium WebDriver 可用于与 JSON 数据文件交互。在自动化测试中,经常需要通过 JSON 文件为测试用例提供大量数据,以验证特定场景或创建数据驱动框架。JSON 文件以键值对形式包含数据,其扩展名为 .json。

Java 提供了一些类和方法,可以使用 JSON Simple 库对 JSON 文件执行读写数据操作。JSON Simple 是一个轻量级的库,用于操作 JSON 对象。

如何安装 JSON Simple?

步骤 1 - 从以下链接添加 JSON Simple 依赖项:

https://mvnrepository.com/artifact/.

步骤 2 - 保存包含所有依赖项的 pom.xml 文件并更新 Maven 项目。

示例 1 - 从 JSON 文件读取所有值

让我们以名为 Detail.json 的 JSON 文件为例,我们将读取整个 JSON 文件并使用 JSONParser 类及其 parse() 方法检索其所有值。

Seleniu JSON File 1

Detail.json 文件的内容如下:

{
   "name": "Ram",
   "email": "[email protected]",
   "home": [
      {
         "road": "TUY",
         "zip": "700008"
      },
      {
         "road": "TUX",
         "zip": "700061"
      }
   ]
}

从 Detail.json 文件检索值后,我们将把 name 和 email 键的值输入到以下页面中的 全名电子邮件 字段中。

Seleniu JSON File 2

请注意:Details.json 文件放置在项目下的 Resources 文件夹中,如下图所示。

Seleniu JSON File 3

JSONRead.java 类文件的代码实现。

package org.example;

import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;

import java.io.FileReader;
import java.io.IOException;
import java.util.concurrent.TimeUnit;

public class JSONRead {
   public static void main(String[] args) throws IOException, ParseException {

      //object of JSONParser
      JSONParser j = new JSONParser();

      // load json file to be read
      FileReader f = new FileReader("./Resources/Detail.json");

      // parse json content
      Object o = j.parse(f);

      // convert parsing object to JSON object
      JSONObject detail = (JSONObject)o;

      // get values from JSON file
      String name = (String)detail.get("name");
      String email = (String)detail.get("email");
      System.out.println("First Name: " + name);
      System.out.println("Email: " + email);

      // get values from JSON array
      JSONArray h = (JSONArray)detail.get("home");

      // iterate through the JSONArray
      for(int i = 0; i < h.size(); i ++){
         JSONObject home = (JSONObject) h.get(i);
         String road = (String)home.get("road");
         String zip = (String)home.get("zip");
         System.out.println("Road: " + road);
         System.out.println("Zip: " + zip);
      }
      
      // Initiate the Webdriver
      WebDriver driver = new ChromeDriver();

      // adding implicit wait of 12 secs
      driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS);

      // Opening the webpage
      driver.get("https://tutorialspoint.com/selenium/practice/text-box.php");

      //Identify elements
      WebElement n = driver.findElement(By.xpath("//*[@id='fullname']"));
      WebElement m = driver.findElement(By.xpath("//*[@id='email']"));

      // enter name and email after reading from JSON file
      n.sendKeys(name);
      m.sendKeys(email);

      // get values entered
      String enteredName = n.getAttribute("value");
      String enteredEmail = m.getAttribute("value");
      System.out.println("Entered Name: " + enteredName);
      System.out.println("Entered Email: " + enteredEmail);

      // quitting browser
      driver.quit();
   }
}

添加到 pom.xml 的依赖项。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
   http://maven.apache.org/xsd/maven-4.0.0.xsd">
   
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.example</groupId>
   <artifactId>SeleniumJava</artifactId>
   <version>1.0-SNAPSHOT</version>
   
   <properties>
      <maven.compiler.source>16</maven.compiler.source>
      <maven.compiler.target>16</maven.compiler.target>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
   
   <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
   <dependencies>
      <dependency>
         <groupId>org.seleniumhq.selenium</groupId>
         <artifactId>selenium-java</artifactId>
         <version>4.11.0</version>
      </dependency>
      
      <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
      <dependency>
         <groupId>com.googlecode.json-simple</groupId>
         <artifactId>json-simple</artifactId>
         <version>1.1.1</version>
      </dependency>
   </dependencies>
</project>

输出

First Name: Ram
Email: [email protected]
Road: TUY
Zip: 700008
Road: TUX
Zip: 700061
Entered Name: Ram
Entered Email: [email protected]

Process finished with exit code 0

在上面的示例中,我们读取了整个 JSON 文件,并在控制台中获得了其所有值,消息为 - 姓名:Ram,电子邮件:[email protected],道路:TUY,邮编:700008,道路:TUX邮编:700061。然后,将通过读取 JSON 文件获得的姓名和电子邮件的值输入到网页上的输入框中,并在控制台中也检索到输入的值,消息为 - 输入的姓名:Ram输入的电子邮件:[email protected]

最后,收到消息 Process finished with exit code 0,表示代码已成功执行。

示例 2 - 在 JSON 文件中写入和读取值

让我们再举一个例子,我们将创建一个名为 Detail1.json 的 JSON 文件,该文件位于项目中的 Resources 文件夹下,并在其中写入一些值。

package org.example;

import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

public class JSONReadWrite {
   public static void main(String[] args) throws IOException, ParseException {

      // object of JSONObject
      JSONObject j = new JSONObject();

      // generate key-value pairs in JSON file
      j.put("Name", "Selenium");
      j.put("Language", "Java");

      // create JSON file with no duplicate values
      FileWriter f = new FileWriter("./Resources/Detail1.json", false);

      // write on json file
      f.write(j.toJSONString());

      // close file after write
      f.close();

      //object of JSONParser
      JSONParser j1 = new JSONParser();

      // load json file to be read
      FileReader f1 = new FileReader("./Resources/Detail1.json");

      // parse json content
      Object o = j1.parse(f1);

      // convert parsing object to JSON object
      JSONObject detail = (JSONObject)o;

      // get values from JSON file
      String name = (String)detail.get("Name");
      String language = (String)detail.get("Language");
      System.out.println("Name: " + name);
      System.out.println("Language: " + language);
   }
}

添加到 pom.xml 的依赖项。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
   http://maven.apache.org/xsd/maven-4.0.0.xsd">
   
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.example</groupId>
   <artifactId>SeleniumJava</artifactId>
   <version>1.0-SNAPSHOT</version>
   
   <properties>
      <maven.compiler.source>16</maven.compiler.source>
      <maven.compiler.target>16</maven.compiler.target>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
   
   <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
   <dependencies>
      <dependency>
         <groupId>org.seleniumhq.selenium</groupId>
         <artifactId>selenium-java</artifactId>
         <version>4.11.0</version>
      </dependency>
      
      <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
      <dependency>
         <groupId>com.googlecode.json-simple</groupId>
         <artifactId>json-simple</artifactId>
         <version>1.1.1</version>
      </dependency>
   </dependencies>
</project>

输出

Name: Selenium
Language: Java

Process finished with exit code 0

在上面的示例中,我们在项目中的 Resources 文件夹下创建了一个名为 Detail1.json 的 JSON 文件,并在其中写入了一些值。然后我们读取所有这些值,最后在控制台中以消息的形式获得它们 - 名称:Selenium语言:Java

最后,收到消息 Process finished with exit code 0,表示代码已成功执行。

此外,名为 Detail1.csv 的 JSON 文件已在项目目录中创建。单击它,我们将获得通过上述代码写入的值。

Seleniu JSON File 4

这总结了我们关于 Selenium WebDriver - JSON 数据文件的教程的全面内容。我们首先描述了什么是 JSON Simple 库,如何安装 JSON Simple,并逐步讲解了如何在使用 JSON Simple 和 Selenium WebDriver 的情况下读取和写入 JSON 文件中的值的示例。这使您能够深入了解 Selenium WebDriver 中的 JSON 数据文件。最好不断练习您所学的内容,并探索与 Selenium 相关的其他内容,以加深您的理解并拓宽您的视野。

广告