http://www.softwaretestinghelp.com/log4j-tutorial-selenium-tutorial-26/
Now we are moving towards the end of our most comprehensive Free Tutorials for Selenium Testing tool. The tutorials we are posting now are the part of advance Selenium training.
In the previous tutorial, we kept our focus on the Continuous Integration tool named as Hudson. It’s a free tool and has a lot more capabilities to build the testing project, execute the test classes remotely and send out a notification email across the stakeholders informing them about the application status with respect to passed and failed test cases.
In the current tutorial, we would motion towards some advance concepts that would directly or indirectly help in optimizing the Automation framework and brings more visibility to the users.
Thus, in the current tutorial, we would discuss about the logging feature, its potential, debugging capabilities and much more.
Sometimes logging is considered to be an overhead upon the existing script creation mechanism but experts considers it to be one of the best practices if used in the accurate proportion because of the following advantages:
Advantages of Logging in Selenium Scripts:
- Grants a complete understanding of test suites execution
- Log messages can be stored in external files for post execution scrutiny
- Logs are an exceptional assistant in debugging the program execution issues and failures
- Logs can also be reviewed to ascertain the application’s health by the stakeholders
Log4j – A Java based Logging API
Moving on to the technical details about logging, let us discuss the origin of the API that we would be using throughout the log4j tutorialto generate logs. Log4j was a result of collaborative efforts of people at Secure Electronic Marketplace for Europe to develop a utility that would help us generating logs and hence the log4j came into limelight in the year 1996. Log4j is an open source tool and licensed under IBM Public License.
There are three main components that constitute the implementation of log4j. These components represent the details about the log level, formats of the log message in which they would be rendered and their saving mechanisms.
Constituents of Log4j
- Loggers
- Appenders
- Layouts
#1) Loggers
The following steps need to done in order to implement loggers in the project.
Step 1: Creating an instance of Logger class
Step 2: Defining the log level
Logger Class – It is a java based utility that has got all the generic methods already implemented so that we are enabled to use log4j.
Log levels – Log levels are popularly known as printing methods. These are used for printing the log messages. There are primarily five kinds of log levels.
- error()
- warn()
- info()
- debug()
- log()
Thus, to be able to generate logs, all we need to do is to call any of the printing method over the logger instance. We will have a broader look into it during the implementation phase.
#2) Appenders
Now that we know how to generate these logs, the next thing that should pop up into our minds is that where do I get to view the logs? The answer to this question lies in the definition of “Appenders”.
Appenders are consistently used to specify the data source/medium where the logs should be generated. The scope of data sources stretches from various external mediums like console, GUI, text files etc.
#3) Layouts
At times, user wishes certain information to be pre – pended or appended with each log statement. For example I wish to a print a timestamp along with my log statement. Thus, such requirements can be accomplished by “Layouts”.
Layouts are a utility that allows the user to opt for a desired format in which the logs would be rendered. Appenders and Layout have a tight coupling between them. Thus, we are required to map each of the appender with a specific layout.
Take a note that user is leveraged to define multiple appenders, each mapped with a distinct layout.
Now that we are aware of the basics of log4j and its components, we shall motion our focus towards the implementation phenomenon.
Let us understand the entire implementation process step by step.
Installation/Setup
For the installation and setup, we would be considering “Learning_Selenium” project that we have already created in the earlier sessions of this series.
Step 1: The first and the foremost step is to download the latest jar for log4j API. The jar can be easily found at its official distribution website – “http://logging.apache.org/log4j/1.2/download.html”.
Step 2: The next step is to configure the build path and provide log4j.jar as an external library.
Implementation
Logging using log4j can be implemented and configured in namely two ways:
- Programmatically via script
- Manually via Configuration files
Both the above mentioned configuration methods have merit as well as demerits. For this tutorial, we would consider configuring log4j manually via Configuration files based on its ease and simplicity. Configuration file is yet another xml file to configure artifacts related to log4j.
Creation of log4j.xml file
Step 1. Create a log4j.xml file. Copy and paste the code below in the configuration file.
1 |
<? xml version = "1.0" encoding = "UTF-8" ?>
|
2 |
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> |
3 |
< log4j:configuration xmlns:log4j = 'http://jakarta.apache.org/log4j/' >
|
4 |
< appender name = "consoleAppender" class = "org.apache.log4j.ConsoleAppender" >
|
5 |
< layout class = "org.apache.log4j.PatternLayout" >
|
10 |
< param name = "ConversionPattern" value = "%-5p[%c{1}]: %m%n" />
|
13 |
< appender name = "fileAppender" class = "org.apache.log4j.RollingFileAppender" >
|
14 |
< param name = "append" value = "false" />
|
15 |
< param name = "file" value = "Logs/Webliv_Automation_Logs.log" />
|
16 |
< layout class = "org.apache.log4j.PatternLayout" >
|
17 |
< param name = "ConversionPattern" value = "%d{dd-MM-yyyy HH:mm:ss}%x %-5p[%c{1}]: %m%n" />
|
22 |
< appender-ref ref = "consoleAppender" />
|
23 |
< appender-ref ref = "fileAppender" />
|
25 |
</ log4j:configuration >
|
Walkthrough of Configuration File
consoleAppender
1 |
< appender name = "consoleAppender" class = "org.apache.log4j.ConsoleAppender" >
|
2 |
< layout class = "org.apache.log4j.PatternLayout" >
|
The consoleAppender is used to print the log statements on the console.
fileAppender
1 |
< appender name = "fileAppender" class = "org.apache.log4j.RollingFileAppender" >
|
The fileAppender is used to print the log statements within an external file. User is leveraged to set an on and off value for the append tag which would tell the system to append and log statements to the previously created one or to overwrite the previously created logs and generate the fresh logs altogether.
1 |
< param name=<em>"append"</ em > value=< em >"false"</ em >/>
|
2 |
< param name = "file" value = "Logs/TestLogs.log" />
|
The value of the file parameter is set to a particular location to notify the system to create the anticipated log file at the said location. We also specify the log file name within the value parameter.
Layout
1 |
< layout class = "org.apache.log4j.PatternLayout" >
|
2 |
< param name = "ConversionPattern" value = "%d{dd-MM-yyyy HH:mm:ss}%x %-5p[%c{1}]: %m%n" />
|
As discussed in the early sections of this tutorial, the layouts are used to specify the rendering mechanism for log statements. Log4j provides various layout patterns. User is leveraged to specify the desired pattern in the value of ConversionPattern parameter.
The output of the above layout should be something like:
01-07-2014 12:56:32 INFO [GmailLogin]: Sample log message
In the output above:
- First field – Date of execution
- Second field – Exact time in hh:mm:ss at which the test step was executed
- Third field – One of the log level
- Fourth field – Name of the test class
- Fifth field – Log message
Step 2. As soon as we are done with the creation of log4j.xml file, the next step is to put the log4j.xml file into the project’s root folder/base directory.
Program level Implementation
Step 3: The next step is to use any of the configurator to configure and parse the log4j.xml file.
Syntax:
1 |
package com.logExample;
|
2 |
import org.apache.log4j.xml.DOMConfigurator;
|
3 |
import org.junit.AfterClass;
|
4 |
import org.junit.BeforeClass;
|
5 |
import org.junit.runner.JUnitCore;
|
6 |
import org.junit.runner.Result;
|
7 |
import org.junit.runner.RunWith;
|
8 |
import org.junit.runner.notification.Failure;
|
9 |
import org.junit.runners.Suite;
|
14 |
public class TestSuite {
|
16 |
* Setup method to set system property for log file name
|
19 |
public static void Setup() {
|
21 |
DOMConfigurator.configure( "log4j.xml" );
|
26 |
public static void main(String[] args) {
|
27 |
Result result = JUnitCore.runClasses(TestSuite. class );
|
28 |
for (Failure failure : result.getFailures()) {
|
29 |
System.out.println( "\nTEST NAME: " + failure.getTestHeader());
|
30 |
System.out.println( "\nERROR: " + failure.getMessage() + "\n" );
|
31 |
System.out.println(failure.getTrace());
|
Note: Logs can be implemented at the class level also instead of Test suite level. All you need to do is to make the required changes in the test class rather than in the test suite.
Step 4: The very next step is to create a test class “GmailLogin.java” under the project. Implement the Gmail login functionality with in the class.
Step 5: The next step is to import the logger class to be able to implement the log statements.
Syntax:
import org.apache.log4j.Logger;
Step 6: The next step in the process is to instantiate the object of the Logger class.
Syntax:
//Object initialization for log
static Logger log = Logger.getLogger(Demo.class.getName());
Step 7: The above created log variable of type Logger would be used across the entire test class to generate the log statements. Refer the following code for the same.
Syntax:
2 |
public void testGmailLogin() throws Exception{
|
4 |
driver.findElement(By.id( "Email" )).sendKeys( "TestSelenium1607@gmail.com" );
|
5 |
log.info( "Entered a valid Email Address." );
|
7 |
driver.findElement(By.id( "Passwd" )).sendKeys( "InvalidPassword" );
|
8 |
log.info( "Entered a invalid Password." );
|
10 |
driver.findElement(By.id( "signIn" )).click();
|
11 |
log.info( "Clicked on the Sign In Button." );
|
14 |
assertTrue( "Verification Failed: User successfully landed on the Home Page." , driver.getTitle().equals( "Gmail" ));
|
15 |
log.info( "Verified that the user landed on the Home Page." );
|
19 |
log.error( "Unsuccessfull Login." );
|
Result in the log file
01-07-2014 12:56:11 INFO [GmailLogin]: Uploaded the file to the System: FileExample.txt
01-07-2014 12:56:11 INFO [GmailLogin]: Submitting the changes
01-07-2014 12:56:15 ERROR [GmailLogin]: Unsuccessful Login.
Conclusion
In the current tutorial, we pressed our focus on the technical implication while implementing logging in a framework. We exploited log4j utility to implement logging. We discussed the basic components those constitute log4j from a usability perspective. With the Appenders and layouts, user is leveraged to choose the desired logging format/pattern and the data source/location.
Next Tutorial #27: In the upcoming tutorial, we would discuss some more advanced topics related to efficient scripting and to troubleshoot scenarios where the user is required to handle mouse and keyboard events. Moreover, we would also discuss how to store more than one web element in a list
相关推荐
【Python的selenium操作:判断元素是否存在】 在Python的自动化测试中,Selenium是一个非常强大的工具,用于模拟用户与网页的交互。Selenium库提供了一系列API,使得我们可以控制浏览器进行各种操作,例如点击按钮...
Selenium是ThroughtWorks公司一个强大的开源Web功能测试工具系列,本系列现在主要包括以下4款: 1.Selenium Core:支持DHTML的测试案例(效果类似数据驱动测试),它是Selenium IDE和Selenium RC的引擎。 2....
4. **配置Selenium代码**:在Python中,使用以下代码设置ChromeDriver的路径: ```python from selenium import webdriver driver = webdriver.Chrome(executable_path='path_to_chromedriver') ``` 5. **测试...
【标题】"log4j+properties" 描述的是一个基于自动化测试工具Selenium的解决方案,其中涉及的关键组件是日志管理框架log4j及其配置文件`log4j.properties`。这个压缩包提供了一套适用于Selenium测试的完整log4j环境...
用于firefox录制的插件,是php语言的文件导出,使用firefox打开的话下载完成后直接安装。
Selenium IDE是firefox的一个插件,可以帮助刚入门的自动化测试供测试,在脚本语言不太熟练的情况下,可以通过Selenium IDE实现脚本的录制、开发、回放。 众所周知,「Selenium IDE」是一种记录和回放工具。现在它将...
Selenium是一款强大的自动化测试工具,尤其在Web应用的测试领域中广泛应用。它的核心功能是模拟真实用户对浏览器的操作,如点击、输入、导航等,从而实现自动化测试脚本的编写。这里的“selenium的jar包”指的是...
【Selenium基础与实战】 Selenium 是一个强大的开源自动化测试框架,主要用于Web应用程序的测试。它支持多种编程语言,如Java、Python、C#、Ruby等,并且与各种浏览器兼容,包括Chrome、Firefox、IE等。Selenium的...
4. **Browser Specific Drivers**:每个浏览器的驱动程序(如 `org.openqa.selenium.chrome.ChromeDriver` 和 `org.openqa.selenium.firefox.FirefoxDriver`)实现了 WebDriver 接口,实现了与不同浏览器的交互。...
使用log4j 如何使用: 安装maven配置环境变量 git clone mvn test也可以直接使用jenkins,触发mvn test 使用接口处理不同版本的页面,使用java反射机制实现页面替换使用java注解实现不同类反射初始化使用单例模式...
selenium-java-3.141.59.jar selenium java自动化
史上最全软件测试技术全套教程,包括: Postman Selenium 单元测试 压力测试 回归测试 安全测试 性能测试 测试工具 集成测试 等流行技术的系列教程
Selenium是一种专门用于自动化Web应用程序测试的工具,尤其在现代敏捷开发流程中扮演着重要角色。它之所以强大,是因为其能够支持多种操作系统和多种浏览器环境,包括但不限于Chrome、Firefox、Internet Explorer和...
Selenium服务器是一个强大的自动化测试工具,它允许开发者模拟真实用户在浏览器中的操作,进行Web应用程序的功能性和兼容性测试。在IT行业中,Selenium是广泛应用于Web应用自动化测试的框架,尤其在JavaScript、PHP...
4. Selenium Grid:扩展了Selenium的功能,提供了一个中心节点(hub)来管理和调度测试执行,可以在多台机器上并行运行测试,提高测试效率。 选择适合的Selenium工具需考虑以下因素: - 如果需要在远程服务器上安装...
SeleniumIDE来编写测试场景,然后利用Java语音来做各种条件、循环...先给大家出4个题目,下面围绕他们你将一一学会如何在SeleniumIDE中使用JS、循环、条件语句。 http://www.51testing.com/html/21/149221-818644.html
Selenium:Selenium移动端自动化测试.docx
Selenium:SeleniumWebDriver基础操作教程.docx