How To Handle SSL Certificate Error In IE Browser For Selenium WebDriver Test

Earlier we learnt how to handle SSL certificate error by creating custom profile In selenium WebDriver software test when you run It In Firefox browser as described In THIS POST. IE browser do not have any such feature to create and run software test In custom profile. So you need to do something different for IE … Read more

What Is An Abstract Class In Java?

What Is An Abstract Class? If you will go to attend an interview for selenium WebDriver software testing tool with java , 90% Interviewer will ask you this question. Your answer should be like this : An abstract class is a class that is declared with abstract keyword. If class contains any abstract method then … Read more

How To Find Broken Links/Images From Page Using Selenium WebDriver Example

This guide will show you how to find broken links in Selenium using automated scripts. You’ll learn how to detect non-working links and images on a webpage by checking HTTP response codes—ensuring better site quality and user experience through automation. If you remember, Earlier we learnt how to extract all links from page In THIS … Read more

What Is Polymorphism In Java OOP?

We learnt about Encapsulation In previous post. Polymorphism Is another OOP fundamental concept in java software development. Interviewer can also ask you about Polymorphism In java software development language then you must be aware about It. What Is Polymorphism? Polymorphism Is made from two Greek words -> “polys” and “morphē”. polys means “many, much” and morphē means “form, … Read more