Systems | Development | Analytics | API | Testing

Selenium

Page Factory and Page Object Model in Selenium WebDriver

An emphasis on expedited time to market has made test automation an unavoidable necessity in an agile and fast-paced company environment. Automation testers are working hard to make sure that test cases match the features being added to the product as product development moves forward. For instance, even minor UI changes to the web application will cause the test automation scripts to alter if the tests are created without considering scalability and maintainability.

A Simple Guide to using Firefox Driver for Selenium to Run your Tests

A Firefox Driver for Selenium is a web driver for the Firefox browser that allows you to programmatically interact with a web page in a Firefox browser using Selenium. It helps you automate various actions as if you were interacting with the website manually. This can be useful for tasks such as web scraping, automated testing, and automating repetitive tasks on a website.

How to test Alerts and Popups in Selenium: The Ultimate Guide

Remember that time when you were browsing a website and got caught by a pop-up asking you to download a guide? Just because you could not find a button to escape that pop-up, you ended up leaving it! Imagine this happens to your application. You might end up losing potential users. As a website owner, this is the worst thing that could happen to you. Thus testing such alerts and popups is essential every time you make a release. A quicker way to do this is to automate your tests.

A Comprehensive Guide to Automating Clicks using Selenium

Selenium is a test automation tool for automating user actions on a web browser. In this guide, we will walk you through the process of using Selenium to click on different types of elements. Whether you’re a beginner or an experienced user, this guide will provide you with the knowledge and skills to effectively use Selenium for clicking on various elements on web pages. So, let’s learn how to master the Selenium click function!

Action Class in Selenium: Its Method and Implementation

Selenium stands apart from other testing tools by offering a variety of techniques to test applications, which has led to its widespread use in automating web applications. No matter how complicated the user interface (UI) is, Selenium offers several methods to automate web apps, decreasing or eliminating the need for manual labor. So, how can we automate online applications when using a mouse or keyboard to communicate with the browser?

What is System setProperty in Selenium? How does it work?

Testing is an essential process of software development. There are many things that can go wrong if you do not test a software application. Therefore, double check on the developed software is a good practice to ensure it meets the quality demands. As you are aware, today’s IT world depends on the Automation Testing of an application. Why? It’s just because of the features, frameworks, performance, and quality test results.

How to Setup and Configure Selenium WebDriver with Eclipse

Selenium is an open-source automation testing framework used to automate web browsers. It supports multiple programming languages such as Java, C#, Python, and Ruby. Selenium allows testers to write test scripts that can automate the process of testing web applications, including filling out forms, clicking buttons, and navigating between pages. Selenium WebDriver is a component of the Selenium suite that allows users to control a web browser through a program.

Mastering Python Selenium Web Scraping: A detailed guide to perform Web Scraping

In the last decade or so, data has become the most valuable resource in the world. The influence of data has become so prominent in our society and industry that experts have now coined the term “data economy” to emphasize it. Undoubtedly, data has also made a huge impact on how the software industry and businesses operate.

How to set up logging using Log4j in Selenium?

Log4j is a popular logging framework used for Java-based applications. We can use Log4j in Selenium to provide logging functionality and help in debugging the test scripts. By using Log4j, you can log messages at different levels (e.g. Debug, Info, Warn, Error, Fatal) and output them to various appenders (e.g. Console, File, Database). Integrating Log4j in Selenium can greatly enhance the debugging experience and improve the efficiency of the testing process.

How to Find Broken links using Selenium Webdriver

When you encounter 404/Page Not Found/Dead Hyperlinks on a website, what do you think of it? You would find it irritating to encounter broken links, so you should continuously concentrate on eliminating their presence in your web product (or website). The rankings of your web product on search engines (like Google) will also suffer if it contains numerous pages (or links) that lead to a 404 error (or page not found).