All posts by Shalini Baskaran

About Shalini Baskaran

Shalini works as a Technical Writer at LambdaTest. She loves to explore recent trends in test automation. Other than test automation, Shalini is always up for travel & adventure.

Follow me on:

Blogs: 18

Automation

Top 10 PHP Testing Frameworks for 2024

A framework is a collection or set of tools and processes that work together to support testing and developmental activities. It contains various utility libraries, reusable modules, test data setup, and other dependencies.

March 1, 2024

view count64624 Views

Read time17 Min Read

How To Generate Extent Reports In Selenium

Selenium JavaAutomationTutorial

How To Generate Extent Reports In Selenium

Selenium is a great tool when it comes to reporting, as it provides inbuilt reports using various frameworks like TestNG and JUnit. Though a few built-in reports are available, they do not provide information on the steps executed as part of the test suite.

May 19, 2022

view count258061 Views

Read time24 Min Read

How To Use isDisplayed() In Selenium WebDriver

Selenium JavaAutomationTutorial

How To Use isDisplayed() In Selenium WebDriver

If you use Selenium WebDriver, you are probably aware that there are a number of common ways to loop through and interact with elements on a web page. Among them isDisplayed(), isEnabled(), and isSelected() methods. When a tester needs to ascertain the visibility scope of a web element, they can use these methods.

April 22, 2022

view count139836 Views

Read time15 Min Read

How To Run JUnit Tests In Jupiter?

Selenium JavaAutomationTutorial

How To Run JUnit Tests In Jupiter? [JUnit Jupiter Tutorial]

JUnit Jupiter is a perfect blend of the JUnit 5 programming model and extension model for writing tests and extensions.

March 16, 2022

view count349005 Views

Read time12 Min Read

JUnit 5 vs TestNG

Selenium JavaAutomationTutorial

JUnit 5 vs. TestNG: Choosing The Right Framework For Selenium Automation Testing

A framework is a backbone for testing or development activities. It is a set of components that helps frame the tests, execute the tests, and generate the final report of execution. The approach used for designing the test automation framework plays a crucial part in the testing activity.

December 27, 2021

view count73387 Views

Read time22 Min Read

Switch Between iFrames In Selenium Java

Selenium JavaAutomationTutorial

How To Switch Between iFrames In Selenium Java [Tutorial]

Although automation testing has been around for several years, the tester faces multiple hurdles while performing Selenium automation testing. There are multiple cases that can’t be automated, and there are a few that are hard to implement and have to be handled efficiently. One such case is handling the web pages with iframes.

December 15, 2021

view count196097 Views

Read time9 Min Read

how-to-write-test-scripts-in-selenium

AutomationSelenium TutorialTutorial

How to Write Test Scripts in Selenium

An automated test script takes testing to the next level by executing setup and validation procedures programmatically. Unlike traditional test scripts, which require manual intervention, automated test scripts operate independently. This not only enhances efficiency and reduces errors but also serves as comprehensive documentation for your software’s testing process. When it comes to automation testing, … Continue reading How to Write Test Scripts in Selenium

December 10, 2021

view count371034 Views

Read time18 Min Read

Debugging in selenium webdriver

Selenium WebDriverAutomationTutorial

How To Use Breakpoints For Debugging In Selenium WebDriver

Automation testing is not always a smooth ride. There are cases where the tests would not work as expected, in which cases debugging the test code (or implementation) is the only way out! Debugging issues in tests become even more difficult if the test suite comprises a large number of test methods.

September 22, 2021

view count226409 Views

Read time13 Min Read

JUnit 5 parallel test execution

AutomationSelenium JavaTutorial

Parallel Testing With JUnit 5 And Selenium [Tutorial]

Parallel test execution with Selenium is one of the major factors that can affect the test execution speed. Serial execution in Selenium can be effective only if the tests have to be run on a small number of browser and OS combinations.

September 11, 2021

view count119919 Views

Read time14 Min Read

Handle Cookies in Selenium

AutomationSelenium JavaTutorial

How To Handle Cookies in Selenium WebDriver

Most of us use online platforms for doing things like online shopping, bill payments, ticket booking, and more. These online platforms (or websites) use cookies to identify whenever there is a new visit.

July 28, 2021

view count265681 Views

Read time11 Min Read