Explicit Waits also known as Dynamic Waits because it is highly specific conditioned. It is implemented by WebDriverWait class. To understand why you need Explicit Wait in Selenium, you must go through the basic knowledge of the wait statements in a program. In simple terms, you must know some conditions. Such conditions have been created to give… Continue reading Explicit Wait in Selenium
Author: Hareesh P
Implicit Wait in Selenium
The Implicit Wait in Selenium is used to tell the web driver to wait for a certain amount of time before it throws a “No Such Element Exception”. The default setting is 0. Once we set the time, the web driver will wait for the element for that time before throwing an exception.Selenium Web Driver has borrowed… Continue reading Implicit Wait in Selenium
Waits in selenium
Waits in Selenium is one of the important pieces of code that executes a test case. It runs on certain commands called scripts that make a page load through it. Selenium Waits makes the pages less vigorous and reliable. It provides various types of wait options adequate and suitable under favorable conditions. This ensures you don’t mess up and get ended… Continue reading Waits in selenium
XPath in Selenium
What is XPath in Selenium? XPath in Selenium is an XML path used for navigation through the HTML structure of the page. It is a syntax or language for finding any element on a web page using XML path expression. XPath can be used for both HTML and XML documents to find the location of any… Continue reading XPath in Selenium
Frame work in Selenium
In Selenium, a framework refers to a structured and organized approach to designing and implementing automated test scripts. It provides a set of guidelines, best practices, and reusable components that help testers build maintainable, scalable, and efficient automated tests. The primary goal of using a framework is to make the test automation process more manageable… Continue reading Frame work in Selenium
WebDriver in Selenium
Selenium WebDriver is a crucial component of the Selenium automation framework. It provides a programming interface to interact with web elements, navigate through web pages, and perform various actions on web applications. WebDriver allows developers to write automated tests for web applications and execute them in different browsers. Key Features of Selenium WebDriver: Cross-Browser Testing:… Continue reading WebDriver in Selenium
Selenium Interface
Selenium is a powerful open-source framework that enables automated testing of web applications. One of its key components is the Selenium WebDriver, which allows developers to interact with web elements and simulate user interactions. To facilitate a seamless interaction between WebDriver and the various browsers, Selenium employs a robust interface that abstracts the complexities of… Continue reading Selenium Interface
UI and UX Designs
UX Design The original definition of UX referred to physical and digital products. Nowadays, UX design mainly relates to digital products. So, user experience design is a process that involves cultivating a good relationship between a company, the company’s software products /services, and the company’s clients/customers.The relationship is based on how a user feels when… Continue reading UI and UX Designs
SDET (Software Development Engineer in Test)
SDET SDET (Software Development Engineer in Test) in testing is an IT professional who can work equally and effectively in both development and testing roles. SDETs take part in complete software development process as well as software testing process. SDET professional’s knowledge is entirely focused on testability, robustness and performance of software testing and development process.… Continue reading SDET (Software Development Engineer in Test)
Test Plan vs Test Strategy
What is Test Plan? A Test Plan is defined as a document which outlines the scope, objective, method and weight on a software testing task Test Strategy Test Strategy in software testing is defined as a set of guiding principles that determines the test design & regulates how the software testing process will be done. The… Continue reading Test Plan vs Test Strategy