• Selenium Video Tutorials

Selenium - TestNG



当我们使用 Selenium 或任何其他工具运行任何自动化测试时,都需要查看和分析执行结果,以得出已执行、通过、失败的测试数量、失败数据等信息,并以报告的形式呈现。

有时,测试失败时捕获的屏幕截图也会包含在报告中。测试报告也需要定期与项目利益相关者共享。为此,我们可以借助 TestNG 报告。

TestNG 报告是在使用 TestNG 构建并运行测试用例后自动生成的 HTML 报告。它是一个单元测试框架,可以与 Selenium 测试集成并用于报告目的。

此外,TestNG 还有一个名为 Reporter 的默认报告类,用于帮助记录日志。这有助于检测故障的根本原因,以调试失败的测试。

创建 TestNG 报告的先决条件

  • 在系统中安装 Java(版本高于 8),并使用命令检查它是否存在:java -version。如果安装已成功完成,则将显示已安装的 Java 版本。

  • 在系统中安装 Maven,并使用命令检查它是否存在:mvn -version。如果安装已成功完成,则将显示已安装的 Maven 版本。

  • 安装任何 IDE,如 Eclipse、IntelliJ 等。

  • 从以下链接添加 TestNG 依赖项:https://mvnrepository.com/artifact/

  • 从以下链接添加 Selenium Java 依赖项:selenium-java

  • 保存包含所有依赖项的 pom.xml 并更新 Maven 项目

生成 TestNG 报告的不同方法有哪些?

下面列出了生成 TestNG 报告的不同方法:

  • emailable-report.html

  • index.html 报告

  • Reporter 类报告

emailable-report.html

创建 emailable-report.html 的步骤如下:

步骤 1 - 创建一个 TestNG 测试类,其中包含以下示例的实现,我们首先将点击欢迎页面上的新用户按钮

请注意,我们将通过 testng.xml 文件运行测试。

Selenium TestNG Report 1

点击新用户按钮后,我们将导航到注册页面,其中包含欢迎,注册文本,如下图所示。

Selenium TestNG Report 2

示例

package Report;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.*;
import java.util.concurrent.TimeUnit;
import static org.testng.Assert.assertEquals;

public class TestNGTest {
   WebDriver driver;
   @BeforeTest
   public void setup() throws Exception{

      // Initiate browser driver
      driver = new ChromeDriver();
      
      // adding implicit wait of 12 secs
      driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
      
      // Opening the webpage
      driver.get("https://tutorialspoint.com/selenium/practice/login.php");
   }
   @Test(priority = 1)
   public void verifyWelcomePageHeading() {
   
      // identify header then get text
      WebElement header = driver.findElement
         (By.xpath("//*[@id='signInForm']/h1"));
      String text = header.getText();
      
      // assertion to verify login page header
      assertEquals("Welcome, Login In", text);
   }
   @Test(priority = 2)
   public void moveToRegisterPage() {
   
      // identify button then click
      WebElement btn = driver.findElement
         (By.xpath("//*[@id='signInForm']/div[3]/a"));
      btn.click();
   }
   @Test(priority = 3)
   public void verifyRegisterPageHeading() {
   
      // identify header then get text
      WebElement heder = driver.findElement
         (By.xpath("//*[@id='signupForm']/h1"));
      String text = heder.getText();
      
      // assertion to verify register page header
      assertEquals("Welcome,Register", text);
   }

   @AfterTest
   public void teardown() {
      // quitting browser
      driver.quit();
   }
}

testng.xml 文件中的配置。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="All Test Suite">
   <test verbose="2" preserve-order="true" name="TestNGTest.java">
      <classes>
         <class name="Report.TestNGTest">
            <methods>
               <include name="verifyWelcomePageHeading"/>
               <include name="moveToRegisterPage"/>
               <include name="verifyRegisterPageHeading"/>
            </methods>
         </class>
      </classes>
   </test>
</suite>

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/org.testng/testng -->
      <dependency>
         <groupId>org.testng</groupId>
         <artifactId>testng</artifactId>
         <version>7.9.0</version>
         <scope>test</scope>
      </dependency>
   </dependencies>
</project>

上述实现的项目结构如下图所示:

Selenium TestNG Report 3

我们将通过 testng.xml 运行测试。

输出

===============================================
All Test Suite
Total tests run: 3, Passes: 3, Failures: 0, Skips: 0
===============================================

Process finished with exit code 0

我们借助 TestNG 测试框架创建了测试,并检索了页面标题并使用断言对其进行了验证。

控制台中的结果显示总测试运行次数:3,因为有三个带有 @Test 注释的方法 - verifyWelcomePageHeading()、moveToRegisterPage() 和 verifyRegisterPageHeading()。

最后,收到消息通过:3进程已完成,退出代码为 0,表示代码已成功执行。

步骤 2 - 刷新项目,项目结构中应该会生成一个名为test-output的新文件夹。

Selenium TestNG Report 4

步骤 3 - 右键点击emailable-report.html,然后选择在浏览器中打开的选项。

Selenium TestNG Report 5

该报告将在浏览器中打开,显示测试类名称 - TestNGTest.java,以及通过、跳过、失败的总数、测试持续时间等。此外,报告中还包含测试方法名称 moveToRegisterPage、verifyRegisterPageHeading 和 verifyWelcomePageHeading。

index.html 报告

创建 index.html 报告的步骤如下:

步骤 1 - 按照创建 emailable-report.html 所述步骤的步骤 1 进行操作。

步骤 2 - 刷新项目,项目结构中应该会生成一个名为test-output的新文件夹。

Selenium TestNG Report 6

步骤 3 - 右键点击index.html,然后选择在浏览器中打开的选项。

Selenium TestNG Report 7

该报告将在浏览器中打开,显示 testng.xml、测试数量、组、时间、报告程序输出、忽略的方法和按时间顺序查看。此外,“结果”部分包含测试方法名称 moveToRegisterPage、verifyRegisterPageHeading 和 verifyWelcomePageHeading,以及方法数量、通过和失败的数量。

从 Reporter 类生成的报告

TestNG 提供了 Reporter 类用于记录日志。它有四种不同的方法来处理要记录的信息:

  • Reporter.log( String str);

  • Reporter.log( String str, Boolean logToOut);

  • Reporter.log( String str, int l);

  • Reporter.log( String str, int l, Boolean logToOut);

在报告中使用 Reporter 类生成日志消息的步骤如下:

步骤 1 - 创建一个 TestNG 测试类,其中包含以下示例的实现,我们首先将点击欢迎页面上的新用户按钮

请注意,我们将通过 testng.xml 文件运行测试。此外,测试执行完成后,报告中将包含以下日志消息:

  • 正在转到注册页面

  • 已验证登录页面标题

  • 已验证注册页面标题

Selenium TestNG Report 8

点击新用户按钮后,我们将导航到注册页面,其中包含欢迎,注册文本,如下图所示。

Selenium TestNG Report 9

请注意,我们将通过 testng.xml 文件运行测试。此外,测试执行完成后,报告中将包含以下日志消息:

  • 正在转到注册页面

  • 已验证登录页面标题

  • 已验证注册页面标题

示例

package Report;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.Reporter;
import org.testng.annotations.*;
import java.util.concurrent.TimeUnit;
import static org.testng.Assert.assertEquals;

public class TestNGTest {
   WebDriver driver;
   @BeforeTest
   public void setup() throws Exception{

      // Initiate browser driver
      driver = new ChromeDriver();
      
      // adding implicit wait of 12 secs
      driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
      
      // Opening the webpage
      driver.get("https://tutorialspoint.com/selenium/practice/login.php");
   }
   @Test(priority = 1)
   public void verifyWelcomePageHeading() {
   
      // identify header then get text
      WebElement header = driver.findElement(By.xpath("//*[@id='signInForm']/h1"));
      String text = header.getText();
      
      // assertion to verify login page header
      assertEquals("Welcome, Login In", text);
      Reporter.log("Verified Login Page header");
   }
   @Test(priority = 2)
   public void moveToRegisterPage() {
   
      // identify button then click
      WebElement btn = driver.findElement(By.xpath("//*[@id='signInForm']/div[3]/a"));
      btn.click();
      Reporter.log("Moving to Registration Page");
   }
   @Test(priority = 3)
   public void verifyRegisterPageHeading() {
   
      // identify header then get text
      WebElement heder = driver.findElement(By.xpath("//*[@id='signupForm']/h1"));
      String text = heder.getText();
      
      // assertion to verify register page header
      assertEquals("Welcome,Register", text);
      Reporter.log("Verified Register Page header");
   }

   @AfterTest
   public void teardown() {
   // quitting browser
   driver.quit();
   }
}

步骤 2 - 刷新项目,项目结构中应该会生成一个名为test-output的新文件夹。

步骤 3 − 右键点击emailable-report.htmlindex.html,选择在浏览器中打开的选项。

以下 emailable-report.html 报告应该在浏览器中打开,显示测试类名称 - TestNGTest.java,以及通过、跳过、失败的总数、测试持续时间等信息。此外,报告中还包含测试方法名称 moveToRegisterPage、verifyRegisterPageHeading 和 verifyWelcomePageHeading。

在报告的下方部分,可以查看日志消息以及测试方法名称。

10

以下 index.html 报告应该在浏览器中打开,显示 testng.xml、测试数量、组、时间、报告输出、忽略的方法和按时间顺序查看。此外,结果部分包含测试方法名称 moveToRegisterPage、verifyRegisterPageHeading 和 verifyWelcomePageHeading,以及方法数量、通过和失败的数量。

点击左侧的“报告输出”选项卡,可以查看日志消息以及测试方法名称。

11

以下链接提供了 TestNG 的详细描述:TestNG

本教程到此结束,我们全面介绍了 Selenium - TestNG 报告。我们从描述 TestNG 报告、设置 TestNG 报告的先决条件开始,并逐步演示了如何创建不同类型的 TestNG 报告,例如 emailable-report.html、index.html 以及使用 Reporter 类的报告,并通过示例说明了如何将它们与 Selenium 结合使用。这使您深入了解了 TestNG 报告。建议您不断练习所学知识,并探索与 Selenium 相关的其他内容,以加深理解并扩展视野。

广告