Questions tagged [software-quality]

Software quality reflects how well a software conforms to given requirements (functional and non-functional), how much it shows characteristics like reliability, efficiency, security, maintainability.

233 questions
0
votes
0 answers

How can I call cloud functions (Firebase) to my cypress tests?

I'm working on e2e testing on cypress. During generating user account details, I need to switch to admin mode from user mode to accept the request of account details request. I want to switch user between the test. We're using firebase. I've tried…
0
votes
0 answers

Applying Quality Models to an Angular Application

I need to analyze an Angular application architecture regarding coupling, cohesion and extensibility. Are there any specific quality models which can be applied to an angular application? I looked into QMOOD quality metrics but I do not know if and…
JK96
  • 3
  • 2
0
votes
1 answer

Does the Test Studio Power App work with Desktop Applications?

I am looking for a free Automation tool for a desktop application that works with Visual Basic and .net. I’ve tried many different ways but none seem to be too great. Most can’t pick up word inside a form that need to be clicked as an example. I saw…
0
votes
1 answer

What is the best way to write deviceless tests?

We want to start covering our application (android/ios) with e2e tests, However in my experience it's hard and nearly impossible to automate mobile applications in a scalable and reliable way so we'are thinking to go with deviceless testing on the…
Yanir
  • 73
  • 1
  • 8
0
votes
1 answer

How to fix error code fixtures in cypress

I get the error code, when i coding fixtures in cypress, and if we want create fixture, we must create 2 files, first file for inizialitation fixtures and second file for main file. and here is the code for the fixture with the file name…
0
votes
1 answer

How can I delete Test Suite in Test Rail?

I created 2 test suites in Test Rail but later on; I merged all test cases into one test suite. How to delete empty test suite? I don't see any option/way to delete/hide that test suite.
0
votes
1 answer

How to find unneeded async statements in typescript code?

In our app, we have problems with developers using async where it is not needed (the code is syncronous) and this is sometimes causing problems with code running in unexpected order or boolean statements returning true where they should not, because…
Paul Weber
  • 6,518
  • 3
  • 43
  • 52
0
votes
1 answer

Jmeter tests freeze at o.a.j.p.h.s.h.LazyLayeredConnectionSocketFactory: Setting up HTTP TrustAll Socket Factory

I am executing performance tests using jmeter+docker setup. When I try to run the tests after docker set up, It starts execution but freezes at INFO o.a.j.p.h.s.h.LazyLayeredConnectionSocketFactory: Setting up HTTP TrustAll Socket Factory This is…
0
votes
1 answer

What is the optimal way to check if some values must be replaced or not?

I am updating some product prices in a ERP program in Delphi and I would like to check if new prices with smaller or zero values should be replaced. I have written it in two ways (the first one is the existing code and the second one is an alternate…
0
votes
2 answers

element not interactable on Amazon.com

I'm doing a very simple test for an interview and I can't click the "Start here" link, the error is element not interactable Here is the following code: Click Link xpath=//a[contains(text(),'Comece aqui.')] Its a pretty straightforward element…
0
votes
0 answers

How to test data retention policy and cron job for deleting old data?

There are some retention policies for the data that my company uses, for different types of data we have different rules and these different types of data and files are used in different microservices and databases. For example : file type "A"…
Keipro
  • 95
  • 1
  • 1
  • 13
0
votes
0 answers

Quality gate failed in SonarQube + Maven + Eclipse

I had created a project (my-project-1) in SonarQube(http://localhost:9000/) and linked to Eclipse by mvn sonar:sonar \ -Dsonar.projectKey=my-project-1 \ -Dsonar.host.url=http://localhost:9000 \ …
Pamba
  • 776
  • 1
  • 16
  • 29
0
votes
0 answers

In My application there are multiple options for Filter

Apply Filter to Display data on Grid. Importer Multiple Options. Branch Multiple Options. Search By Search By-1,Search By-2,.... Search By-10 Dropdown DropDown-1,DropDown-2,.....DropDown-5 4.1) From and To Date. Vendor Vendor-1,Vendor-2,....…
0
votes
0 answers

Is there any standard range for testing web app in older browser version i.e., how older version should I consider?

Like If I test my web app in chrome, then what should be the chrome version range should I check ?
0
votes
0 answers

How can I compare serverless with monolithic projects?

I need to develop a final project in college and I chose this topic as a goal. I would like to compare the impact of using serverless on the development of an application. To do this, I thought I'd compare repositories that use monolithic and those…