|
Help Needed with Manual Testing Interview Questions Hello all,I'm preparing for a manual testing interview and I'm having some trouble figuring out how to answer some of the questions. I'm especially stuck on a particular question involving writing code. I referred to this resource. The question is:
"Write a program that takes an integer as an input and prints the sum of all the digits in the input number."I've tried this code, but it doesn't seem to be working:int number, sum = 0;court << "Enter an integer: ";
in >> number;
while (number != 0)
{
sum += (number % 10);
number /= 10;
}
court << "The sum of the digits is: " << sum << endl;
Can anyone help me figure out what I'm doing wrong? Any advice or tips would be greatly appreciated.
Thanks!
|
|
|
Hey! Who knows which tool can help me with auto-creating test descriptions? It takes too much of my time lately, so I am looking for some ways to makes it faster. Haven't tried any tools yet, would appreciate any advice from you!
|
|
|
Please help and suggest tools for checking element of Ul such as font family, size, styles used in mobile application Check below use case for Login screen,
Now for field title and subtitles font family should be “Roboto” (just example). And font size should be "10" and Font color should be “#DCDCDC” for example.
Now how do I verify it mobile app is satisfying above requirements or not? It can be done manually but it's time consuming and chance of human error. So pls suggest any tool or app that will identify the font style of any mobile app developed either in Native or Hybrid.
|
|
|
Document Testing Looking for recommendations for a testing tool that we can use to test our documents. Looking to test the document content, validate that the correct clauses are reflecting, the correct data is outputted, and that the layout is correct.
|
|
|
We do weekly bug review in which we discuss root cause of the bug. Is there better way to do? Currently we do weekley bug review with all devs and QA in which we review impacted areas and root cause of the bug also what we had done to stop this bug from happening.
I know its good to have this discussion but we still have lots of bugs in backlog as well. And i need suggestion what's other good practise i can introduce .
I know we can do defect triage meeting to discuss all the bugs which has been raised. Are there any other process which i can follow.
Thanks |
|
|
I want to automate my regression test cases using Playwright. Is it wise to use playwright or move to cypress? I have around 300 test cases. I like to use Typescript with playwrights.
|
|
|
The Rise and Fall of Protractor, and Why You Should Stop Using It Protractor has been a popular choice for writing end-to-end (E2E) browser tests over the past decade. However, Protractor is being removed from the Angular project as of Angular 15 due to a loss of dedicated developers and the rise of better testing frameworks. Based on this state of affairs, what should developers working with Protractor do, and what tool choices do developers have going forward?
|
|
|
The Growing Role of AI in DevOps All around us, we are seeing a growing trend of artificial intelligence (AI) being implemented in every aspect of our lives—from self-driving cars to intelligent chatbots. But what about the world of DevOps? Has AI come to play a role here as well? The growing role of AI in DevOps has unearthed some key benefits it can bring to many DevOps workflows.
|
|
|
What tools are you using to support your team when doing BDD? Hi everyone! I am curious to learn which tools you are using to support your team when going through discovery/3 amigos sessions, formulation, and automation? Are you always able to automate your scenarios or finally end up testing some of them manually?
|
|
|
Can we generate automation script to extract the locator from web page? I need a automaction script which generates the locatore/xpath present on web page.
|
|