Found 871 Articles for Automation Testing

Limitations of Selenium Webdriver

Siva Sai
Updated on 18-Jul-2023 13:33:50

414 Views

Web testing has undergone a revolution thanks to Selenium WebDriver, a potent technology. This open-source framework is crucial to web application testing since it enables developers to automate browsers. Selenium WebDriver does have some restrictions, though, much as any tool. In order to better comprehend these restrictions, this article explores them and offers specific instances. Please be aware that while this article describes the limitations of Selenium WebDriver, it does not discount the enormous value and flexibility that it provides to developers all over the world. The Selenium WebDriver: A Brief Overview A component of the Selenium Suite called Selenium ... Read More

Pipeline in DevOps - Overview, Tools, Implementation

Aadyaa Srivastava
Updated on 27-Apr-2023 12:13:53

144 Views

DevOps, as the name suggests, is a common application design concept that combines development and operations. But, there are numerous DevOps terminology, and it's useful to look at one of them and investigate it in depth every now and again. We can better comprehend a concept like DevOps by breaking it down and concentrating on one aspect at a time. This allows us to get more out of the process. In order to better understand DevOps, we're going to look at pipelines in DevOps. This post will explain what a pipeline is in DevOps. We'll also go over the DevOps ... Read More

Getting Started With Maven For Selenium Testing

Aadyaa Srivastava
Updated on 27-Apr-2023 11:55:44

2K+ Views

Introduction to Maven Maven is a robust build automation tool that is commonly used to handle dependencies and build processes in Java applications. Maven makes it simple to manage project dependencies, compile, test, and package your application, and automate the entire build process. Setting Up a Maven Project for Selenium Testing Setting up a well-organized project structure is critical for success when automating web application testing using Selenium. Maven, a popular Java project build tool, can assist you in achieving this goal by providing a standardised approach to manage dependencies, build, and run tests. To create a Maven project for ... Read More

Forward driver method – Selenium Python

Atharva Shah
Updated on 18-Apr-2023 12:07:17

447 Views

This technique is used to navigate forward in a web browser's history and allows Selenium to move forward in the browser's history page executing any new navigation commands. This Forward Driver Method in Selenium Python can improve the efficiency and accuracy of your automated testing scripts. which allows you to quickly move between. Setup Firefox Executable Download the Firefox browser installer from here Once downloaded, install the browser and an exe file will be placed automatically in C:\Program Files\Mozilla Firefox\firefox.exe. We will be needing it later. Gecko Driver Windows Users can download the gecko ... Read More

Food Recognition Selenium using Calorie Mama API

Atharva Shah
Updated on 18-Apr-2023 12:05:18

276 Views

An open-source program used to automate web browsers is called Selenium Webdriver. It offers a platform-independent testing framework for web applications on many platforms and browsers. With the use of deep learning and computer vision algorithms, the food identification API Caloriemama can recognise different foods and their nutritional values from a single photograph. In this guide, we'll look at how the Selenium Webdriver automates the process of uploading photographs and retrieving the results, making it simple for developers to include food recognition functionality into their apps and provide consumers with correct nutritional information. Setup Firefox Executable Download the ... Read More

Difference Between QTP 10 and QTP 11

Md. Sajid
Updated on 17-Feb-2023 17:23:04

113 Views

The Quick Test Pro (QTP) is a robust and scalable test automation tool. QTP 10 and QTP 11 vary in that QTP 10 uses straightforward conventional object recognition techniques to identify an object. There are additional ways to identify an object in QTP11, though. Two of the several ways are the XPath tutorial and the CSS tutorial. QTP 11 can load libraries at runtime, as opposed to QTP 10, which loads everything at startup. These two test automation tools are from the HP. These include support for mobile testing, integration with HP ALM (Application Lifecycle Management), and enhanced security features. ... Read More

Framework used in software Automation Testing

Abhimanyu V
Updated on 08-Dec-2022 12:41:47

428 Views

Any good automated testing procedure must include testing frameworks. For QA teams aiming to improve their agile procedures, they may cut maintenance expenses and testing time while also offering a stronger return on investment (ROI). The purpose of this article is to discuss the most popular framework types now in use, as well as their merits and drawbacks. This article will give QA professionals a high−level overview of each type of framework and how they may contribute to the success of any automated testing process, whether they are new to automated testing or just need a fast reminder. What is ... Read More

How to get rid of Firefox logging in Selenium?

Debomita Bhattacharjee
Updated on 08-Feb-2022 10:44:56

2K+ Views

After the execution of tests, there are logs generated because of Firefox logging in with geckodriver. This log generation by Firefox can be disabled by certain parameters setting.We can stop these logs from being recorded in the console and capture them in a different file. This is achieved with the help of the System.setProperty method. In the above image, we can see the geckodriver logs generated in the console.SyntaxSystem.setProperty(FirefoxDriver.SystemProperty.DRIVER_USE_MARIONETTE, "true"); // turning off logs System.setProperty(FirefoxDriver.SystemProperty.BROWSER_LOGFILE, ""); // record logs in another fileExampleimport org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import java.util.concurrent.TimeUnit; public class LogsDisable{    public static void main(String[] ... Read More

How to determine colors using Selenium?

Debomita Bhattacharjee
Updated on 08-Feb-2022 10:30:22

862 Views

Selenium has the color conversion support class. We have to add the statement from selenium.webdriver.support.color import Color to convert colors to rgba/hex format.Examplefrom selenium import webdriver from selenium.webdriver.support.color import Color #color conversion to rgba format print(Color.from_string('#00fe37').rgba) #color conversion to hex format print(Color.from_string('rgb(1, 200, 5)').hex) #color conversion to rgba format print(Color.from_string('green').rgba)Output

What are the Actions class in Selenium?

Debomita Bhattacharjee
Updated on 08-Feb-2022 11:03:54

520 Views

Selenium can perform mouse movements, keypress, hovering on an element, drag and drop actions, and so on with the help of the ActionsChains class. We have to create an instance of the ActionChains class which shall hold all actions in a queue.Then the method - perform is invoked which actually performs the tasks in the order in which they are queued. We have to add the statement from selenium.webdriver import ActionChains to work with the ActionChains class.Syntax#Method 1 - chained pattern e =driver.find_element_by_css_selector(".txt") a = ActionChains(driver) a.move_to_element(e).click().perform() #Method 2 - queued actions one after another ... Read More

1 2 3 4 5 ... 88 Next
Advertisements