Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

robotframework-listenerlibrary

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

robotframework-listenerlibrary

Robot Framework Listener Library

  • 1.0.3
  • PyPI
  • Socket score

Maintainers
1

ListenerLibrary for Robot Framework

Introduction

RobotFramework library relaying on listener interface. Allows to run defined RF keyword before other keywords are executed, after keywords are executet, before test, after test, etc.

  • Information about keywords can be found on the Keyword Documentation page.

Requirements

  • Robot Framework

Installation

Using pip

The recommended installation tool is pip.

Install pip. Enter the following:

pip install robotframework-listenerlibrary

Usage

BasicListener.robot

*** Settings ***
Documentation     This example demonstrates how to use current library
Library      ListenerLibrary

*** Test Cases ***
Example Test
    Should Be Equal As Numbers    2    2
	Register Start Keyword Listener    Log   message from start keyword listener
	Should Be Equal As Numbers    2    2
	Register End Keyword listener      Log   message form end keyword listener    level=WARN
    Should Be Equal As Numbers    2    2
	Custom Keyword    You will see keyword above this and bellow this
    Unregister End Keyword Listener
	Should Be Equal As Numbers    2    2
	Unregister Start Keyword Listener
	Should Be Equal As Numbers    2    2

*** Keywords ***
Custom Keyword
	[Arguments]     ${argument}
	Log       ${argument}

MultipleListeners.robot

*** Settings ***
Documentation     This example demonstrates how to use current library
Library      ListenerLibrary    WITH NAMR   FirstListener
Library      ListenerLibrary    WITH NAME	AnotherListener

*** Test Cases ***
Example Test
    Should Be Equal As Numbers    2    2
	FirstListener.Register Start Keyword Listener    Log   message from start keyword listener
	Should Be Equal As Numbers    2    2
	FirstListener.Register End Keyword listener      Log   message form end keyword listener    level=WARN
    Should Be Equal As Numbers    2    2
	Should Be Equal As Numbers    2    2
	AnotherListener.Register Start Keyword Listener    Log   start kw message from AnotherListener
    FirstListener.Unregister End Keyword Listener
	Should Be Equal As Numbers    2    2
	FirstListener.Unregister Start Keyword Listener
	AnotherListener.Unregister Start Keyword Listener
	Should Be Equal As Numbers    2    2

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc