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
1 answer

Can I restore Test Cases/Test Suite I accidentally deleted from Azure DevOps

We are using Scrum and in last Sprint (Sprint2) I manually run some test cases with success. We just started new Sprint3 and I first created new test suite for Sprint3. Then I noticed there is also possibility to copy test plan and I tried to copy…
1
vote
4 answers

Difference between test strategy and test plan?

As per lot of articles/google it is very hard to understand or explain the exact difference between test plan & strategy. Recently have gone through one of the interview and seems my answer didn't convince to the interviewer. So if anyone can help…
user12426560
1
vote
1 answer

Is there a simple way to manually iterate through existing pandas groupby objects?

Is there a simple way to manually iterate through existing pandas groupby objects? import pandas as pd df = pd.DataFrame({'x': [0, 1, 2, 3, 4], 'category': ['A', 'A', 'B', 'B', 'B']}) grouped = df.groupby('category') In the application a for name,…
Qaswed
  • 3,649
  • 7
  • 27
  • 47
1
vote
0 answers

Need to know common scenarios to test netsuite application

I need to know what are all testing types and scenarios (manual testing) can do for NetSuite application and how? I have tested integration with netsuite and sales force In that I verified cases such as whether all the mapped data can sync or not,…
v.jayanthi
  • 11
  • 3
1
vote
3 answers

Switching from manual to automation testing

Hello Test Automation Experts, Managers, Seeking advice on how to transit from Manual Testing to automation testing I have been a manual tester for over 8 years. I wish to switch to automation testing hence I attended training in Selenium web driver…
1
vote
0 answers

Invoke JUnit from main application, injecting custom @Test

How can I invoke JUnit core to start a test run, and inject a custom @Test method? I know that by using JUnitCore junit = new JUnitCore(); Result result = junit.run(); I can start a JUnit test run and get the final result, and I know that by adding…
Matt Clark
  • 27,671
  • 19
  • 68
  • 123
1
vote
3 answers

Writign Web Form Test Case

I'm not a software tester, but have been tasked with writing manual User Acceptance test cases for some long customer signup forms for a web application. Is the starting point that we assume all the form fields are 'there' for each type of form, and…
1
vote
2 answers

What type of report has been created from JIRA?

JIRA tracking issues by creating reports. It shows total estimate of the project, how many time have been taken by a project. What should be the outcome of the project? Now my question is: What are the types of reports which have been generated in…
Shyam D
  • 13
  • 1
  • 4
1
vote
3 answers

What is trace-ability matrix in manual testing.? How to calculate or estimate.?

I have newly changed my company on manual testing role and my manager asked me to make trace-ability matrix for the requirements or test cases (I am not sure). However, this is the first time I am hearing about this word 'trace-ability matrix'.…
user6901674
1
vote
1 answer

Workaround for saving / editing a VSTS test case

I have an issue with VSTS manual test cases. When I try to edit one, I got an error message as follows: An element with the same key already exists in the…
Peter Szekeli
  • 2,712
  • 3
  • 30
  • 44
1
vote
1 answer

Code coverage during manual testing in .NET development server

I have an application hosted in development server. I need to determine the code coverage at the time of manual testing done by QA guys. Thus I am able to find out that how much code have been covered by QA. Thanks in advance to all. Is there any…
1
vote
3 answers

Form Initialize using selenium webdriver

I use the following code using eclipse to initialize a form WebElement e1 = KD.findElement(By.name("name")); e1.sendKeys("Srajan "); But in the form the first character 'S' does not get displayed. It starts from 'r' only. Is the issue be in the…
1
vote
1 answer

Colorbox doesn't scroll down when the webpage has scrolled?

I'm testing a web based application, were it has some colorbox or some other jquery plugins. When i scroll the page, the corresponding colorbox or jquery plugin popup should gets scrolled or it should be stay where it has positioned. And another is…
sabarisan
  • 31
  • 2
  • 2
  • 9
1
vote
0 answers

play back error in mtm 2012,microsoft visual studio 2012

We have Angular Single Page Application for which we are creating test cases. We have a test case written for Login page (loading of page, username, password entry, and login btn click action). While recording the actions the flow is as expected and…
1
vote
3 answers

Orthogonal and Combinatorial testing techniques

What is Orthogonal testing technique? What is Combinatorial testing technique? What is the difference between them? I went through wikipedia and other articles and books but still i am unable to understand them.
Krishna Kittu
  • 106
  • 1
  • 12
1 2
3
9 10