Архив рубрики: English

Tutorials on English

Pilot Testing

Pilot Testing Every software undergoes different types of testing to turn into a high-quality, defect-free product that meets customer requirements. Among different types, pilot testing is one where a small group of real users validates the product or some of its components under real-time operating conditions. Let us explore in detail about pilot testing in… Читать далее »

Introduction to Java

Introduction to Java This article is a beginner’s guide to an introduction to Java programming language. Here, we are going to study – “what is Java?”. Obviously, we know it is a programming language but how is it different from other languages? We are going to learn how it works and its applications in the… Читать далее »

Locators in Selenium WebDriver

Locators in Selenium WebDriver Hello friends! continuing with our “Selenium Automation” series, in this post we will study the different types of locators available in Selenium. Before studying the different locators, let’s first see the need for locators in the automation process.A simple automation process in Selenium can be presented as- Launching browser Opening the… Читать далее »

Wait for Page Load in Selenium

Wait for Page Load in Selenium In this tutorial, we will learn how to wait for a page to load in Selenium before interacting with the web elements present on that page in order to avoid NoSuchElementException. Before going further into the implementation of wait till page load in Selenium you need to understand the… Читать далее »

Static and Dynamic Testing

Static and Dynamic Testing Testing is one of the most important phases in a software development life cycle. There are different testing techniques to effectively carry out the testing process. Each of those techniques can be classified as Static Testing and Dynamic Testing. In this tutorial, we are going to learn about Static and dynamic… Читать далее »

Refresh a webpage in selenium

Refresh a webpage in selenium There are multiple ways of refreshing a page in Selenium Webdriver. In this post, we will present all these ways and also specify which one is the best. 1. Using driver.navigate() commandSelenium Webdriver provides inherent support for refreshing a webpage using its driver.navigate() command. This is by far the most… Читать далее »