Questions tagged [manual-testing]

Manual testing is the process of manually testing software to ensure the correctness, completeness and quality of developed software.

Manual testing is the process of manually testing software to ensure the correctness, completeness and quality of developed software. It requires a tester to play the role of an end user, and use most of all features of the application to ensure correct behavior.

139 questions
1
vote
3 answers

Need both positive and negative test cases for a given below scenario

One of my friend got this below question in her interview. Test Scenario: A man moving from top of the building to bottom. I somewhat able to write two positive test cases. Positive Test case: Using Lift Using steps But I am not able to write any…
Raja Subramani
  • 31
  • 1
  • 10
1
vote
2 answers

How to perform unit testing manually?

What is the architecture behind implementing the manual unit testing? If am going to return values accordingly based on path of execution or failure, how do I get those returned values interpret it effectively? I request the answers to be related in…
Karthik
  • 365
  • 1
  • 3
  • 16
1
vote
2 answers

Suggestion for test case managment tool

First off, please forgive me if this has been answered before. I did do a search before posting but the results that came back were not really satisfying. This is question is a "last resort" type of thing, to point us to the right direction, if at…
petrosg
  • 118
  • 6
1
vote
1 answer

Microsoft Test Runner stand alone

Is there a stand alone version of the Microsoft Test Runner (The tool, that is started, when I run manual tests from the Microsoft Test Manager)? I want to assign Tests to Testers, but they should not have to install the whole Test Manager.
Sven-Michael Stübe
  • 14,560
  • 4
  • 52
  • 103
0
votes
0 answers

Using VS Code is there any method or extension for associating Automation Test scripts to Test Cases in Azure DevOps?

Is there any extension in VS Code for associating Automation scripts with Manual test cases in Azure DevOps?Or any other way to link those test scripts? I try to find some extensions and solution but couldn't found any. Would be glad if someone can…
0
votes
0 answers

QA Automation testing tools

What are the essential tools for the Automation QA when testing cross-platform applications being the ONLY QA in the DevTeam? I want to combine the Automation Testing to my working environment of testing applications.
0
votes
0 answers

Difference between black box testing, white box testing and grey box testing?

Difference between Black, White and Grey Box Testing? I'm expecting, the relevant and straight answer. I already tried in various ways but i need relevant and straight answer. If anyone answer my question im glad about it and i learn a new thing…
0
votes
1 answer

menu bar is not appearing in JMETER IDE

jmeter when ever I try to save my test isn't saving and showing error.Even menu bar is not appearing in above image ERROR: = java.lang.NoClassDefFoundError: Could not initialize class org.apache.jmeter.gui.util.FileDialoger in thread…
0
votes
1 answer

Parameters are not considered by JMeter

I'm new to JMeter. I'm trying to test this endpoint manually using JMeter : @GetMapping("total-opportunities-value") ResponseEntity getTotalOpportunitiesValue(){} that's the config I set to the Thread Group (same I use from…
Bihi23
  • 66
  • 6
0
votes
1 answer

I can't simulate credit card failures via rejection trigger in the PayPal Sandbox. What is the right flow?

Hi guys I am trying to simulate card errors in the sandbox. But can't understand how I can trigger it... Simulate card errors To simulate credit card failures, pass a rejection trigger in the First Name or Name on Card field in your existing…
BoGra4
  • 1
0
votes
0 answers

Is there any tool available to compare in development font size and other aspects of app

Is there any tool to identify font size and other aspects of apps by comparing screenshots, App in development and Figma design. Please let me know if you know any tools. I would be very grateful if anyone could help me find this tool. I try to…
0
votes
0 answers

Postman AssertionError: expected 10137 to equal 10093

enter image description hereWhenever I try to edit the task the test fails Test code: let jsonData = pm.response.json(); pm.test("Gallery has correct id", function(){ pm.expect(pm.environment.get("boardId")).to.equals(jsonData.board_id)}) Test…
0
votes
0 answers

Unable to link test runs to test cases

When trying to link a Test run to a test case it results in the test case being linked to itself. How do I build a history of the test runs done against a test case across multiple Test Plans. This would be helpful in identifying software features…
0
votes
0 answers

Trying to manually execute BDD test case in Zypher Scale, but unable to do so. Can somebody help me with this?

This is what I see when I open the test case in test cycle: https://i.stack.imgur.com/IDNzz.png Once I click on start new test execution, this pop up comes and after I click on confirm, nothing happens (https://i.stack.imgur.com/vJk4p.png) Does…
Ssyed
  • 1
  • 1
0
votes
1 answer

How the JMeter actually works? Does it add records to the application in real time?

Can we add data in application(registration form/candidates details etc) using JMeter? I create script -HTTP Request where I used ${__UUID()} function to create random UID -Create HTTP Req with parameters -Add listener to view result Script…