Author: SAKSHI SNEHA

black lighted gaming keyboard

How to Handle Keyboard Actions in Selenium?

Reading Time: 3 minutes In this blog we will learn how we can handle Keyboard Actions using selenium Webdriver.Before starting the blog first we must know what is Actions Class how it is used? So,Let’s start. What is the actions class in Selenium Webdriver? Actions like clicking a button, similarly entering a keyword in the search bar are prime examples of how we use a mouse or keyboard. Hence ,these interactions Continue Reading

code projected over woman

How to Handle Dropdown in Selenium?

Reading Time: 2 minutes In this blog,we will learn that how to handle dropdown through selenium webdriver. As we know Dropdown is the set of HTML fields and in addition for handling dropdowns with selenium webdriver we use Select class. Select in Selenium Webdriver In addition Selenium provides the Select class to implement the HTML Select elements. Correspondingly The Select class in Selenium is an ordinary Java class that Continue Reading

How to select image using Selenium Web driver.

Reading Time: 2 minutes In this blog ,we can select images using Selenium WebDriver. Selenium WebDriver is a web framework that permits us to execute cross-browser tests.Also, this tool is used for automating web-based application testing to verify that it performs expectedly. Browser Drivers in Selenium In order to develop a secure connection with the browser, Selenium uses Drivers. Each browser has its own driver that hides the internal logic of Continue Reading

Let’s know about Checks and Thresholds in k6

Reading Time: 2 minutes In this blog we will know about the check function and thresholds that is commonly used in k6 load testing. What is check function in k6? A check is a test condition that can give a truthy or falsy result. The sets parameter contains one or more checks, and the check() function will return false if any of them fail. Let say we are writing a load test script where you Continue Reading

Browser Recorder in K6- A Quick Overview

Reading Time: 4 minutes In this blog, we will learn about generating a k6 test script based on user sessions via the Browser Recorder extension. This extension allows us to capture everything that we have done in browser, and generate a k6 script for us automatically, and link it to our k6 Cloud account. Note :- k6 comes with two methods for recording a session: Browser Recorder extension — generates Continue Reading