SeleniumLog 3.5.0

dotnet add package SeleniumLog --version 3.5.0
NuGet\Install-Package SeleniumLog -Version 3.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SeleniumLog" Version="3.5.0">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SeleniumLog --version 3.5.0
#r "nuget: SeleniumLog, 3.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SeleniumLog as a Cake Addin
#addin nuget:?package=SeleniumLog&version=3.5.0

// Install SeleniumLog as a Cake Tool
#tool nuget:?package=SeleniumLog&version=3.5.0

Detailed Documentation

http://seleniumlog.com

Overview

SeleniumLog.Net is a .Net logging library with built-in listeners for Selenium Webdriver events. For the most part you'll only need this, unless you want to display the output graphically and with screenshot attachments, to which you will also need SeleniumLog.Viewer.

**NOTE 😗* SeleniumLog.Viewer is a Windows application which displays SeleniumLog.Net output in tree format, complete with screenshots attachments. SeleniumLog.Viewer has been renamed to Bonsaih. You can download the 30-day evaluation version from http://bonsaih.com.

To configure SeleniumLog.Net to use Bonsaih display, set the following values in SLConfig.xml file :

  <general option="Enable SeleniumLog">yes</general>

  <output_format option="seleniumlog.viewer" filepath="C:/tmp/log7.txt" 
                    screenshots_folder="C:/tmp/screenshots">true</output_format> 

  <display_system option="Auto-launch SeleniumLog Desktop">false</display_system>

Viewing SeleniumLog.Net output(s)

SeleniumLog.Net can output to three different formats SIMULTANEOUSLY - Console, Text and SeleniumLog.Viewer (Bonsaih) .

  • Console output - Display log to standard console output. For example, if your Selenium test suite was run from TFS or TeamCity build server, the log will be visible on TFS or TeamCity console display.

  • Text output - Output log as plain text file. This has the advantage of being a more permanent output which can be searched for certain things. Text output cannot carry screenshots attachments and is a flat file format.

  • SeleniumLog.Viewer output (Bonsaih) - Output log to BTML format (refer to http://bonsaih.com). BTML is a special markup language for Bonsaih tool. Output is a text file with markup text which is rendered in real-time by Bonsaih as the file is updated. Bonsaih displays in tree format, with colorful icons, text and screenshot attachments. Bonsaih also lets you monitor the log in real-time and remotely from another PC or Laptop via WiFi.

To output to Console :

Edit the following in SLConfig.xml file

<general option="Enable SeleniumLog">yes</general>

<output_format option="console" show_indents="no" >yes</output_format>

To output as Text :

Edit the following in SLConfig.xml file

<general option="Enable SeleniumLog">yes</general>

<output_format option="text" filepath="C:/tmp/log5.txt" show_indents="no"  >true</output_format> 

To output to SeleniumLog.Viewer (Bonsaih) :

Edit the following in SLConfig.xml file

  <general option="Enable SeleniumLog">yes</general>

  <output_format option="seleniumlog.viewer" filepath="C:/tmp/log7.txt" 
                    screenshots_folder="C:/tmp/screenshots">true</output_format> 

  <display_system option="Auto-launch SeleniumLog Desktop">false</display_system>

**NOTE 😗* To view SeleniumLog.Net output using Bonsaih real-time display, just open the output file once in Bonsaih, and it will update automatically everytime the file is updated. You can download the 30-day evaluation of Bonsaih from http://bonsaih.com .

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.5.0 29,988 4/23/2017
3.3.0 1,268 3/12/2017
2.0.0 1,842 7/22/2016
1.3.6 1,779 4/17/2016
1.3.5.4 2,069 12/25/2015
1.3.5.3 1,321 12/6/2015
1.3.5.2 1,450 12/6/2015
1.3.5.1 1,327 12/6/2015
1.3.5 1,250 12/6/2015
1.3.4 1,509 8/28/2015
1.3.3.1 1,311 8/28/2015
1.3.3 1,340 8/17/2015
1.3.2 1,037 7/20/2015
1.3.1 1,046 7/20/2015
1.3.0 1,071 7/19/2015
1.2.1 1,018 7/20/2015
1.2.0 1,608 7/18/2015
1.1.0 1,060 6/30/2015
1.0.0 1,210 6/27/2015

- Compatible with Log4Net user interface (ie., log.Info, log.Warning, log.Debug, log.Error, log.Fatal)
- Output to Text, Console, or Seleniumlog.viewer formats. Or all three simultaneously.
- Supports both Normal (full page) and Ultra-fast (visible section) screenshots
- Fixed slAssert library
- Auto-launch SeleniumLog.Viewer via config file
- Renamed SeleniumLog.config to SLConfig.xml