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
0
votes
0 answers

Test application before the QA department test it

How can I completely test my android application( UI and performance )before the QA engineers test? for example: to check alignment and unused padding, we use Layout Bound. please introduce the tools, thanks.
melikaafrakhteh
  • 305
  • 1
  • 2
  • 8
0
votes
1 answer

Test functionality manually by adding maximum records in SQL table, how should i add those many records?

I have to test functionality manually where , if a background job fails then a record is added in a table having columns Exception Id, Job Id, Job Name, Exception, Method Name, Service Name, etc. columns. At present there are around 25 background…
0
votes
1 answer

How I can run 100 different clint end reports on azure server and check response time of every report.?

Am a manual tester and newbie in automation. I need to test the response time of 100 different reports from the azure server to Clint's end. If I go manually It almost takes a day. Suggest a solution How I can get results in a short time with…
0
votes
2 answers

How do Devs share relevant testing information with Devs-in-Test and QAs?

One of the problems our group is having is in regards to sharing relevant information between the Devs, Devs in Test and QAs. How is this typically done in the industry? For instance, our devs typically follow TDD with CI/CD pipelines offering the…
0
votes
0 answers

what are the difference between test cases and test scenarios in manual testing

What are the difference between test cases and test scenarios in manual testing? and also as a fresher I have to know about how to write test cases and test scenarios
0
votes
3 answers

How to manually test a data retention requirement in a search functionality?

Say, data needs to be kept for 2years. Then all data that were created 2years + 1day ago should not be displayed and be deleted from the server. How do you manually test that? I’m new to testing and I can’t think of any other ways. Also, we cannot…
0
votes
1 answer

facing error 443 while performing android app load testing in jmeter

I am a complete beginner in Jmeter and facing error 443 while performing android app Load testing in Jmeter(5.4.1). I have followed all required steps to connect jmeter to mobile apk.
0
votes
1 answer

unable to connect my mobile to jmeter5.4.1 (mac)for load testing. I am a complete beginner?

I have done all steps mentioned online to connect mobile to jmeter from wifi setting, certificate installation and also mentioned my mac ip in mobile local host.After all this I can't record or connect by mobile.
0
votes
3 answers

Qmetry manual and automation testing

Currently I'm using manual and selenium automation testing. I just want to know that using Qmetry with JIRA will helpful for both manual and automation testing. What type of benefits I'll get using Qmerty?
Anu
  • 17
  • 1
  • 3
0
votes
1 answer

How to use "Requirement-based suite" (Azure DevOps) when testing same user story in multiple environments

I relate testing to the user stories by creating a requirement-base suite in ADO. When I do this, the user story shows this beaker on the user story, indicating whether testing passed, failed, etc.: I've noticed if you relate multiple…
Fissure
  • 229
  • 4
  • 9
0
votes
0 answers

How to test SSRS reports manually

Can anyone help me how to test SSRS reports manually? I am new to testing ETL reports, I have a tool SSRS in my organization and they want me to test SSRS reports. I can write SQL queries to perform data validation but I am not sure how to test the…
0
votes
1 answer

Unable to create an emulator using android studio

I installed android studio on MacBook Pro but when I try to create a virtual device it shows me an error saying that cpu does not support vt-x.
0
votes
1 answer

Calculating cross validation manually gives different result

Let's take data: set.seed(42) y <- rnorm(125) x <- data.frame(runif(125), rexp(125)) I want to perform 2 - fold cross validation on it. So : library(caret) model <- train(y ~ ., data = cbind(y, x), method = "lm", trControl = trainControl(method…
John
  • 1,849
  • 2
  • 13
  • 23
0
votes
1 answer

Why is the outcome of a manual test executed via MS test runner being put in 'In Progress' state?

I am using TFS 2018 to run manual test cases (on chrome browser). When I run a manual test, the Microsoft Test runner opens in a popup window. I mark the result of each test step, mark the test case result, and then save and close it. The…
0
votes
1 answer

How does fixest handle negative values of the demeaned dependent variable in poisson estimations?

I need to perform glm (poisson) estimations with fixed-effects (say merely unit FE) and several regressors (RHS variables). I have an unbalanced panel dataset where most (~90%) observations have missing values (NA) for some but not all…