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
2
votes
3 answers

Software testing workflow using TFS

I'm a software tester at a medium-sized company developing software for a machine (not web or pure desktop applications). Previously my task was quite simple: Just preparing a test plan and test cases in a document, then carrying out all those tests…
user623800
  • 21
  • 3
2
votes
3 answers

iOS manual testing on Testdroid

I just wanted to know if I can do manual testing of iOS (.ipa) app on Tesdroid. As in upload the .ipa and install it on a cloud iPhone to perform manual testing? Thank you.
2
votes
3 answers

Which test management Jira Add-On can be used which has cucumber integration?

I am evaluating Test management tool (a Jira Add-On) which can used to store Requirements, Manual Test Cases as well as Cucumber feature file for automation. I have evaluated Xray and it looks promising but i want to play with more such tools before…
2
votes
2 answers

Automated Unit Testing vs GUI Automation

Automated testing is any type of testing where you are using one piece of code / program to test another piece of code / program. This can be unit testing as described above, or it can be via a specific automation tool, such as TestComplete, QTP,…
Siv
  • 121
  • 2
  • 14
2
votes
1 answer

How to test a CSV file and how to find difference between two CSV files

I would like to know if is there any way of testing a CSV file before importing to database? I have a huge CSV file with multiple columns and each column has different datatype and size. How can I test that the data appearing in generated CSV file…
code-decode
  • 29
  • 1
  • 5
2
votes
1 answer

My application which works with task scheduler can't create directory in my c# code

My application has a code part like that: if (!Directory.Exists(datePath)) { Directory.CreateDirectory(datePath); } If I double click and run exe, it works and creates folders. But when I take my application to task scheduler and set to run…
Yusuf Mert
  • 49
  • 1
  • 8
2
votes
1 answer

Is it possible do code coverage for manual testing on .net server which has phalanger for compiling php code?

Is it possible do code coverage for manual testing on a .NET server which has phalanger for compiling php code?
2
votes
5 answers

Manual Test Script Templates

Can anyone post good test script templates(MSExcel)? -- For Software Testing Project thanks
Dilip
  • 202
  • 6
  • 11
2
votes
6 answers

What is the meaning of incident in software testing?

What is the meaning of an "incident" in software testing?
user1232529
1
vote
2 answers

Microsoft Test Management, running manual tests in a predefined lab environment

I would like some comments on the possibility or alternatives to the following workflow. The players: JimBob - Tester APP_Test - Virtual machine configured with Lab, Build and Test agent. (shows testing and workflow capabilities active in the…
Aran Mulholland
  • 23,555
  • 29
  • 141
  • 228
1
vote
1 answer

How to test Random method of dart library in Flutter?

I am trying to test the Random method from the dart library in Flutter. I got to know about seeding for the Random method to test it but it doesn't make the method purely random as it would behave without seeding because the seeded method always…
Aayush Sahay
  • 9
  • 1
  • 4
1
vote
1 answer

Cypress Testing is Not Working whereas Manual Testing is

I have been using the Cypress testing tool for end to end tests. However, when it comes to saving and displaying certain data, it'll save when done manually but not when the Cypress bot runs through it. You can even do it manually through the…
Sean E
  • 13
  • 5
1
vote
3 answers

Download Test Run Results from Azure DevOps

We are using the Azure DevOps Test Plan module for our manual testing. We have a Test Plan, under which, we have Test Suite, under which we have Test Cases that are assigned to different Testers. Testers use ADO to mark a Test Case outcome as passed…
Shubham Gupta
  • 369
  • 1
  • 4
  • 15
1
vote
2 answers

Is there a way to attach multiple screenshots at once in Azure Devops test runner?

I'm running a manual test on Azure Devops / TFS, and I'm sturggling with attaching files/ screenshots that I would like saved on my computer. Is there a way to attach multiple screenshots at once? The current attachment window allows only 1 file/…
1
vote
1 answer

How to dynamically set deployment approvers?

Can I dynamically set approvers for a deployment environment? Can I check the commits in the build pipeline for owners? Some changes in a build need to be manually tested. We have some text in the change list's description that marks if the commit…
1
2
3
9 10