Found 719 Articles for Testing Tools

What is SDET? Explain Full-Form, Meaning, Role, and Responsibilities

Vineet Nanda
Updated on 13-Jul-2021 07:55:54

499 Views

SDET or software Development Engineer in Test is a role appointed to a person skilled in both quality engineering and software development. Microsoft invented the Term SDET for the first time. After that, it becomes a repetitive term among major companies like Google, Adobe, Amazon, etc. The role of an SDET professional is to automate repetitive manual tasks to enhance efficiency and reliability for an AUT.Roles and Responsibilities of SDETBelow are the roles and responsibilities of SDETs −The first major role of SDETs is to work alongside developers and business stakeholders. The work of SDETs is to understand the specific ... Read More

What is Test analysis (Test Basis) in Software Testing?

Vineet Nanda
Updated on 13-Jul-2021 07:47:59

4K+ Views

Introduction to Software TestingSoftware testing is an examination that is carried out to offer information to stakeholders regarding the quality of the software product or service being tested. Program testing can also give a corporation with an objective, unbiased picture of the software, allowing them to grasp and comprehend the risks associated with software implementation. The process of executing a program or application with the goal of detecting failures and ensuring that the software product is fit for use is known as testing.Software testing is the process of evaluating one or more qualities of interest by executing a software component ... Read More

What is Use Case Testing, Technique & Example?

Vineet Nanda
Updated on 13-Jul-2021 07:43:57

747 Views

What is Use Case in TestingIt is the brief description of a particular use of the software application by the users. Basically, it is made on basis of user action. It is widely used in developing test cases at acceptance level.What is Use CaseUse Case is a list of action taken by actor while interacting the system to achieve a goal. Here, actor can be anyone either human users or any other external system. Basically, it is a technique that helps to identify test cases that cover the entire system, on transaction by transaction basis, from start to finish.In Use ... Read More

10 Best Exploratory Testing Tools

Vineet Nanda
Updated on 13-Jul-2021 07:33:08

337 Views

Exploratory testing tools allow automating exploratory testing through features like annotating feedback and capturing screenshots during test sessions. Testers often combine exploratory testing with automated testing to increase their test coverage, which improves the extrinsic and intrinsic value of the software.It is used for testing, designing and test execution that promotes creativity and experimentation. Therefore, it’s crucial to check for the features that facilitate effective planning, execution and reporting tests.An ideal exploratory testing tool must cover built-in features that support −Effective communication between teamManage and invite testersDefine storiesDocumentationAssign objectivesRecord test steps via screenshots or videos10 Best Exploratory Testing ToolsPractiTestPratiTest is ... Read More

10 Best Open Source Testing Tools

Vineet Nanda
Updated on 13-Jul-2021 07:28:28

2K+ Views

Open-source testing tools allow testers to examine software and applications at different stages and parameters such as regression, load, etc. They cover almost all the features of premium software, making them quite popular among software testers.Benefits of Open Source Testing ToolsAvailable at free of cost leading to low-cost deployment and maintenanceSupported by several online communities, allowing remote teams to collaborate with a projectProvide high-end security through the massive contribution via developers worldwideUnlimited functionalities with on-time security patch updates make them very flexible to use10 Best Open Source Testing ToolsSeleniumSelenium offers superb compatibility with various popular browsers, operating systems and programming ... Read More

How to send a report through email using Selenium Webdriver?

Debomita Bhattacharjee
Updated on 29-Jun-2021 08:42:55

3K+ Views

We can send a report through email using Selenium webdriver. The email report can be an important feature in an automation framework. An email should be necessarily sent after the combined execution of a regression suite has completed to get an overall view of the test results.The ways to send a report through email are listed below −Using the Java library - Apache Commons available in the below link: https://commons.apache.org/proper/commons-email/.Using the Java mail JAR. The details of this is available in the below link: https://javaee.github.io/javamail/Steps to configure the Java mail JAR are listed below −Step1 − Navigate to the below ... Read More

Selenium Exception Error - Element is not clickable at point (x,y). Other element would receive the click

Debomita Bhattacharjee
Updated on 29-Jun-2021 08:39:00

1K+ Views

We may encounter the Selenium Exception Error - Element is not clickable at point(x, y). Other element would receive the click while working Selenium webdriver.This is normally seen while executing Selenium tests from the Chrome browser and not with other browsers like IE and Firefox. This happens because the Chrome browser could not compute the correct location of a webelement.Besides, in the Chrome browser, an element is clicked in its middle position. This exception can also be encountered owing to synchronization issues happening between the application and Selenium.There exists some solutions to fix this issue as listed below −We should ... Read More

How to do UI testing with Selenium?

Debomita Bhattacharjee
Updated on 29-Jun-2021 08:37:35

2K+ Views

We can do UI testing with Selenium webdriver. To achieve this, we have to follow the steps listed below which can be applied to any script developed to test the UI of the application −Step1 − Object of Webdriver should be created. For example, WebDriver driver = new ChromeDriver();The above piece of code is used to create a webdriver instance and initiate the script execution in the Chrome browser.Step2 − Launch the URL on which we want to perform the UI testing. For example, driver.get("https://www.tutorialspoint.com/about/about_careers.htm");The above piece of code shall launch the URL passed as a parameter to the get ... Read More

Jenkins for Test Automation

Debomita Bhattacharjee
Updated on 29-Jun-2021 08:33:00

636 Views

Jenkins is a continuous integration tool and used widely by both the development and testing teams. It comes without any licensing cost and is supported on multiple operating systems.In the test automation world, we run test suites with a large number of test cases, collect results on execution, prepare a dashboard and pinpoint details on failures. All these are supported in Jenkins. Let us see some of the advantages of Jenkins −Jenkins has plugins with which it can be integrated with tests developed in Selenium, Cucumber, TestNG, and so on to execute automated tests for the builds.Tests in a test ... Read More

Modern Web Automation With Python and Selenium

Debomita Bhattacharjee
Updated on 29-Jun-2021 08:28:31

770 Views

We can have modern web automation with Python and Selenium. To configure with Selenium webdriver in Python the steps described below need to be followed −Step1 −To install Python in our system, visit the link − https://www.python.org/downloads/Step 2 − Click on the Download Python button. Once the download is completed, the Python executable file should be available in our system.Step 3 − Double-click on this executable file and the Python installation landing page should be opened. Click on Install Now.Step 4 − Python should be available in the below path −C:\Users\\AppData\Local\Programs\Python\PythonStep 5 − We shall configure the path of ... Read More

Advertisements