1,493 questions
1 vote
1 answer
161 views
DeepFace Analyze - Test scripts for batched image processing
I am having trouble getting image analysis batch processing to work. I would like to send a list of images to DeepFace to get a list of race, gender, and age predictions. I am calling test functions ...
1 vote
2 answers
71 views
How can you write functional tests for an ASP.NET Core gRPC webservice with .NET 8 [closed]
I'm having issues trying to write a functional test for a ASP.NET Core gRPC web service, after investigating a number of articles on the issue, but with all of them referring to use of the Startup ...
0 votes
2 answers
3k views
Running into "Target page, context or browser has been closed" issue
The below code is my Playwright test function test("@Login @Testing Sign In Page Test", async ({ page }) => { console.log("Sign In Page Test"); const ...
-2 votes
1 answer
63 views
In Smart bear floating license, how to know the license is available for user before InstallTestCompleteAdapter task run?
In case of Smart bear floating license, how to know the license is available for user before InstallTestCompleteAdapter task run? i want to know whether the floating license is available or not for ...
1 vote
0 answers
254 views
How do you generate Gorm tables with relations?
I'm trying to achieve this Add functional tests to my Go project The tests should bring up an actual MySQL database (by connecting to a docker container already up and running from the docker ...
1 vote
0 answers
41 views
how to spy/argumentcaptor of background thread to verify in karate-spring boot application
I've a scenario, API service running in springboot and trying to port the existing functional Test to karate based testing. I've added. the API endpoint based configuration and other validation for ...
1 vote
0 answers
54 views
Entity Framework Core in memory reading wrong data type
My functional tests use Microsoft.EntityFrameworkCore.InMemory version 7.0.20. When I run the functional tests for any entity that has a dateonly field, I get an error: Expression of type 'System....
0 votes
1 answer
113 views
MSTest Serilog Console issue
I have a library C# project which has services written. This is using serilog and able to print serilogs on console during normal execution. But when I am using same library within my functional test ...
0 votes
1 answer
153 views
get php version which codeception tests are running
I'm trying to upgrade my project's php version from php 7.4 to php 8.1, Now I changed the php version in my composer.json to php 8.1 like that: "require": { "php": "^8.1&...
0 votes
0 answers
327 views
Cypress e2e test can't access app url in GitHub Actions
I am trying to set up an e2e test in my app using Cypress and GitHub Actions. The tests pass in local with no issue but, when I push to GitHub and consequently run the tests, they don't anymore. The ...
2 votes
1 answer
4k views
How to fix flaky test on Playwright?
Hi I have this app that I'm testing. The app itself will fill the value and click the button to provide the data on table. However, in reality it takes more than 40 seconds to load the data itself so ...
0 votes
0 answers
45 views
How to functionally test an app that has a GUI and also CLI
How should I functionally test an app from which you can execute its functionalities either through the GUI or through CLI? If I make changes to a functionality, lets say "Read a file"; ...
1 vote
0 answers
124 views
jest tests prisma error 'Foreign key constraint failed on the field: `ResetPasswordToken_userId_fkey (index)`' while testing nest app
I have a problem while performing functional tests on nest app. Testing app is builded with nest Test.createTestingModule. describe('createResetPasswordToken', () => { it('should create reset ...
0 votes
0 answers
81 views
Create JUnit tests for a card validating method
I created a Java method that takes a card number and an expiry date and validates the card. I used Luhn's algorithm for validating the card number. public static boolean isValidCreditCard(String ...
0 votes
1 answer
66 views
Difference between functional and regression test cases
I am aware of the definition of functional and regression test case. But I am not able to distinguish which test case should fall in functional and which one should fall in regression test. For ...