Found 719 Articles for Testing Tools

Penetration Testing Tutorial: What is PenTest?

Vineet Nanda
Updated on 25-Nov-2021 07:35:46

288 Views

Penetration TestingPenetration testing, often known as pen testing, is a sort of security testing which is used to find flaws, hazards, and dangers that an intruder may abuse in software applications, networks, or online applications. The goal of penetration testing is to find and evaluate all potential security flaws in a software program. Pen Test is another name for penetration testing.The chance that an intruder would damage or obtain unauthorized access to a network or any data held inside it is referred to as vulnerability. Vulnerabilities are typically found by chance during the software planning and implementation phases. Common threats ... Read More

What is Non Destructive Software Testing (NDST)?

Vineet Nanda
Updated on 25-Nov-2021 07:32:31

183 Views

What exactly is Non-Destructive Software Testing?Non Destructive Testing is a sort of software testing that comprises evaluating and appropriately engaging with the software program. To put it another way, Non-Destructive Software Testing (NDT) is also known as Positive Testing or Happy Path Testing. It produces the required outcomes and demonstrates that the software program behaves as predicted.Putting the necessary info into a login module and testing to see if it recognizes credentials and moves onto another step is an example.In the previous example, input numeric characters in the username text field to undertake non-destructive testing. As a result of entering ... Read More

Modern Principles of Software Development

Vineet Nanda
Updated on 25-Nov-2021 07:28:36

2K+ Views

What is the definition of software development?Phones, televisions, automobiles, vending machines, coffee makers, even pet toys all have software-based functions these days. All of these items were developed by groups of people who banded together with the purpose of causing electrical signals to behave in a predictable manner. In a nutshell, software development refers to the entire process of bringing a software project from idea to completion.A software deliverable's design, documentation, programming, testing, and continuing maintenance are all part of this process. These elements are combined to form a workflow pipeline, which is a set of actions that, when followed, ... Read More

How to Create a Test Plan? (Sample Template, Examples)

Vineet Nanda
Updated on 25-Nov-2021 07:16:16

3K+ Views

Plan for the testA Test Plan is a thorough document that outlines the test strategy, objectives, timetable, estimation, deliverables, and resources needed to accomplish software testing. The Test Plan assists us in determining the amount of work required to confirm the quality of the application being tested. The test plan is a blueprint for conducting software testing operations as a defined procedure, which the test manager closely monitors and controls."A test plan is a document detailing the scope, strategy, resources, and timetable of expected test activities, " according to the ISTQB definition.Let's look at an example/scenario of a Test Plan: ... Read More

Best Testing Certifications Exams

Vineet Nanda
Updated on 25-Nov-2021 06:59:24

129 Views

Software testing is the process of determining the performance of the developed program. It is also made to improve the product and reduce faults and difficulties with it. We have something called the STLC, or Software Testing Life Cycle, for professional software testing endeavors.Software testers are experts that are in charge of the testing process. Smaller and simpler software products need just a few, or perhaps a single, testers, while large, complete software products necessitate a professional testing staff.Software testing job descriptions range from testers and test analysts to testing managers and test designers. There are several software testing certifications ... Read More

Artifact Evolution Over Life Cycle

Vineet Nanda
Updated on 25-Nov-2021 06:52:25

841 Views

What is an artifact, exactly?No, we're not talking about ancient relics. The sort of artifact we're discussing is one that has to do with software development.Whether you're a novice or a seasoned developer, you'll encounter software artifacts. They're critical components of any piece of software, from a simple webpage to a more complicated application.The software development process will be significantly more difficult than it needs to be if artifacts are not correctly produced and preserved.Continue reading to discover all you need to know about software artifacts and what you'll need to know going ahead.ArtifactAn artifact is a by-product of software ... Read More

Agile Development Models in Software Engineering

Vineet Nanda
Updated on 25-Nov-2021 06:30:28

1K+ Views

For some classes of software and certain kinds of software projects, agile software engineering is an acceptable compromise between traditional software engineering and agile software engineering. Agile procedures may provide high-quality systems in a short amount of time. It emphasizes the need for ongoing communication and cooperation between developers and consumers.For effective execution of offshore software development projects with qualities such as shorter time to market and changing company demands, we use agile software development process models. Iterative software development with frequent client delivery is a basic strategy in agile software development that immediately solves one of the primary issues ... Read More

How to click on a link using Selenium webdriver in Python.

Debomita Bhattacharjee
Updated on 19-Nov-2021 11:36:58

9K+ Views

We can click on a link using Selenium webdriver in Python. A link is represented by the anchor tag. A link can be identified with the help of the locators like - link text and partial link text.We can use the link text attribute for an element for its identification and utilize the method find_element_by_link_text. With this, the first element with the matching value of the given link text is returned.Syntaxdriver.find_element_by_link_text("value of link text")We can also use the partial link text attribute for an element for its identification and utilize the method find_element_by_partial_link_text. With this, the first element with the ... Read More

How to select an option in a static dropdown in Selenium?

Debomita Bhattacharjee
Updated on 19-Nov-2021 11:03:24

2K+ Views

We can select an option in a static dropdown in Selenium webdriver. Selenium can handle static dropdowns with the help of the Select class. A dropdown is identified with select tagname and its options are represented with the tagname option. The statement - from selenium.webdriver.support.select import Select should be added to work with Select class.Methods under the Select class are listed below −select_by_visible_text (arg) – it shall select all the options which displayed text matches with the argument.Syntax−sel = Select (driver.find_element_by_id ("name")) sel.select_by_visible_text ('Visible Text')select_by_value (arg) – it shall select all the options having a value that matches with the ... Read More

Gmail login fail using Selenium webdriver. Showing element not found for password.

Debomita Bhattacharjee
Updated on 18-Nov-2021 11:35:14

683 Views

We can encounter Gmail login failure while using Selenium webdriver due to the error - element not found for password. This can be fixed by the methods listed below −Adding implicit wait - Implicit wait is applied to instruct the webdriver for polling the DOM(Document Object Model) for a specific amount of time while attempting to identify an element that is currently unavailable.The default value of the implicit wait time is 0. Once a wait time is set, it remains applicable throughout the entire life of the webdriver object. If an implicit wait is not set and an element is ... Read More

Advertisements