Selenium provides an API for various events that occur when our scripts are executed like click, switch to a window, navigation, onException, etc. and these can be registered using WebDriverEventListener interface or EventFiringWebDriver class. These events play a pivotal role in analyzing results and in debugging issues (if any).
EventFiringWebDriver class takes care of all events that are occurred while the execution of your script. EventFiringWebDriver class can be bind to more than one listener but all event listeners should be registered with the EventFiringWebDriver class so that it can be notified.
EventFiringWebDriver eventFiring =new EventFiringWebDriver(driver);
FirstEventCapture firstListener =new FirstEventCapture(); //FirstEventCapture implements WebDriverEventListener
SecondEventCapture secondListener =new SecondEventCapture(); //SecondEventCapture implements WebDriverEventListener
eventFiring.register(firstListener);
eventFiring.register(secondListener);
Check this link to know details about all the methods in WebDriverEventListener Interface: https://selenium.dev/selenium/docs/api/java/org/openqa/selenium/support/events/WebDriverEventListener.html
Note* WebDriver listener (WebDriverEventListener) is doing a similar job like TestNG listeners i.e. of logging/reporting things but both work on different events. WebDriverEventListener works on different automation events like click, navigation, etc. whereas TestNG works on different test's related events like onStart(), beforeStart(), etc.
selenium testautomation automationtesting eventListener
Clipboardy is a popular Node.js library that provides a cross-platform solution for interacting with the system clipboard. It supports both synchronous and asynchronous operations, and it can be used to copy, paste, and read the clipboard contents. Features of Clipboardy: 1. Cross-platform compatibility: It works on macOS, Windows, Linux, OpenBSD, FreeBSD, Android with Termux, and modern browsers. 2. Synchronous and asynchronous operations: It provides both synchronous and asynchronous methods for clipboard operations, making it suitable for a variety of use cases. 3. Copy, paste, and read operations: It supports copying, pasting, and reading the clipboard contents, making it a versatile tool for interacting with the clipboard. 4. Promise-based API: It is an asynchronous method that returns promises, making it easy to handle asynchronous operations in a clean and concise way. 5. Easy to use: It has a simple and intuitive API that is easy to learn and use. How to Use Clipboardy: To...
Comments
Post a Comment