Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
161 views

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 ...
matth3wV's user avatar
1 vote
2 answers
71 views

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 ...
Jonathan Websdale's user avatar
0 votes
2 answers
3k views

The below code is my Playwright test function test("@Login @Testing Sign In Page Test", async ({ page }) => { console.log("Sign In Page Test"); const ...
Satya's user avatar
  • 656
-2 votes
1 answer
63 views

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 ...
prashant's user avatar
1 vote
0 answers
257 views

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 ...
LaserJesus's user avatar
  • 8,590
1 vote
0 answers
41 views

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 ...
Krish S's user avatar
  • 11
1 vote
0 answers
54 views

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....
Dovid Rabinowitz's user avatar
0 votes
1 answer
113 views

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 ...
Himanshu Garg's user avatar
0 votes
1 answer
153 views

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&...
Umar Sheikh Salem's user avatar
0 votes
0 answers
327 views

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 ...
Pierre Fraisse's user avatar
2 votes
1 answer
4k views

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 ...
Chukchak's user avatar
0 votes
0 answers
45 views

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"; ...
Carlos J. Jimenez's user avatar
1 vote
0 answers
124 views

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 ...
user23303868's user avatar
0 votes
0 answers
81 views

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 ...
Adrian Floroiu's user avatar
0 votes
1 answer
66 views

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 ...
nayak0765's user avatar
  • 193
0 votes
1 answer
985 views

I have a scenario where I am trying to get the coverage report of the functional testcases we have written using robot framework. Application backend is written in java and UI code is written Vue.js ...
Utkarsh Singh's user avatar
-1 votes
1 answer
183 views

I am coding a Laravel package, and I have written functional testing. For that, I need to seed users, using factories. In my config, I have : 'user' => [ 'table' => 'users', ...
Juliatzin's user avatar
  • 19.9k
0 votes
2 answers
3k views

I am building a system using Entity Framework as as my repository, and while i agree that i should not be testing Entity Framework i would like to be able to verify my logic around Entity Framework in ...
Androme's user avatar
  • 2,449
0 votes
0 answers
44 views

Background:- I'm currently writing a functional test for a particular controller's action in order to validate its functionality by making a POST request. Background on controller's action - This ...
anyonymousgamer's user avatar
0 votes
1 answer
95 views

I am trying to call a function to use it result in parametrize. I use fixtures in this function and when I call it at the class level, I see an error. My code: def subscriber_groups_ID(self, ...
IraIra25's user avatar
2 votes
2 answers
2k views

I am working with Kotlin, Micronaut and Kotest5. Setup a functional test directory in gradle. Created functional test in it. Test runs fine, however if I am injecting objects in the test class ...
Tech Noob's user avatar
  • 550
0 votes
1 answer
403 views

I need your help for a basic functional test with Symfony 6.2. I try to implement WebTestCase class to my project. Problem is, the tested route return an internal server error. Here my test class <?...
Rakohn's user avatar
  • 31
0 votes
1 answer
97 views

while react component testing I'am facing this issue and I don't understand how can i solve this issue. I have added all the necessary elements but still facing this issueenter image description here ...
Shalini Dixit's user avatar
2 votes
1 answer
306 views

In controllers in Symfony 5 I used to inject the Session and use it. class MyNiceController { public function __invoke( Session $session ) { $this->useTheSession( $session ); } }...
Xavi Montero's user avatar
  • 11.1k
1 vote
1 answer
861 views

I have the following code in the docker-compose.yml file to have a database started in my test container (the exposed port is dynamic). postgres: image: my-proxy.jfrog.io/postgres:12 ports: ...
Laodao's user avatar
  • 1,729
3 votes
1 answer
1k views

I'm working through the Flasky tutorial from Miguel Grinberg's book Flask Web Development 2e and I've run into a snag with the end-to-end testing in Chapter 15. When I try to run the code I get a ...
Darwin von Corax's user avatar
1 vote
1 answer
1k views

I understand that wiremock is used to simulate a service's response, given a request. However, I am wondering if we could use wiremock to mock a service and then use this mocked service to send out a ...
Laodao's user avatar
  • 1,729
0 votes
0 answers
83 views

I have a microservice that use JWT for authentication/authorization, and it just need a verify an jwt token is correct or incorrect, so in the code, i only implement the decoder for JWT. Lcobucci\...
Erics Nguyen's user avatar
0 votes
1 answer
506 views

I've implemented symfony ux autocomplete with ajax loading. Which is working 100%. When you implement it using ajax it loads nothing in the select dropdown unless you search and it will show the ...
dev_mustafa's user avatar
  • 1,111
0 votes
1 answer
57 views

I got multiple accounts: "userWithCertainRole", "userWithAnotherRole" & "userWithTwoRoles". I want to functional test a specific page for all these accounts with ...
Jelmer405's user avatar
  • 199
1 vote
0 answers
384 views

I'm trying to get up and running with drupal php functional testing. However there seems to be something wrong with my phpunit.xml cofiguration. When running the test i get the following error: ...
kevinius's user avatar
  • 4,638
0 votes
1 answer
84 views

I added some functionality where if you edit an item that somebody edited in the meantime, you go to an "edit confirm" page where you can select which changes you want to overwrite. How it's ...
Joshua Bakker's user avatar
0 votes
1 answer
82 views

I am working in Flutter Android mobile application automation. I am looking for a tool that supports to generate the Bug report while running the automation scripts. Please advice!!!
vani's user avatar
  • 11
1 vote
1 answer
956 views

Expected Response: {"data":{ {"assignments":[{"locationId":"1186755","locationName":"X.11.11"},{"locationId":"1186756",&...
harshini reddy's user avatar
2 votes
1 answer
2k views

Scenario: * def Test_assignment_type = 'ALL' * def TEST_NODE_ID = '123455667' * def list = [ '123', '1234', '12345' ] * def gId_list = karate.mapWithKey(list, 'HOOK_TEST_LOCATION_GID') * ...
harshini reddy's user avatar
2 votes
0 answers
306 views

I'm implementing a project using .net-core and microservices base on eShopOnContainers. In my functional test I previously put all the tests in one class called IntegrationEventsScenarios.cs and now ...
Kaveh Naseri's user avatar
  • 1,326
1 vote
0 answers
288 views

Talk to me QAs! Has anyone done automated tests (E2E) of a webview mobile app (developed in react) ? The application does not open on the web, only on mobile devices. If yes, which testing framework ...
Wilsinho's user avatar
3 votes
0 answers
480 views

Problem Statement: I want to have 1 robot file with 3 Test cases 1st test case would not use any Test Template 2nd test case would use a Test Template using Variables in 'Variables' section so as to ...
Manish Arya's user avatar
0 votes
2 answers
486 views

I have something like the following markup: <div class="test"> <div class="test2">test</div> <div class="test2">test2</div> <div class="test2">test3</...
Tejas Gajjar's user avatar
1 vote
1 answer
5k views

I am not able to get my Cucumber test to read from the application-test.properties file, which resides in the test/resources folder. The cucumber test is reading the features, but the application ...
Panda Wu's user avatar
0 votes
0 answers
43 views

I'm creating functional tests to my program, but for some reason when I wrote system1->getValue() - 36.6033 I got a crazy number like -6.58727e-005. I've done some debbuging and system1->...
Paifo's user avatar
  • 1
0 votes
1 answer
234 views

My application requires the app to run in https since the browser sends payment data to payment gateway through JavaScript library. If the app is run in http then this error is thrown by the payment ...
kofhearts's user avatar
  • 3,854
0 votes
1 answer
256 views

I have created a simple hello world app and here is the spec to test withconfirm block. https://github.com/learningcscience/confirmgeb/blob/master/src/integration-test/groovy/booktest/BookSpec.groovy ...
kofhearts's user avatar
  • 3,854
0 votes
1 answer
443 views

I am writing a functional test using Testcafe. The test scenario is as below, There is a toggle button that activates/deactivates based on an API call When I open my application, an API call is made ...
Bhagya Swamy's user avatar
1 vote
1 answer
453 views

I'm testing Django forms handling and trying to test a ModelForm, which form edits the user's data. I tried to write the test in several ways, but each one throws different mistakes. And all the ...
Radoslav Hadzhiev's user avatar
3 votes
2 answers
5k views

I'm trying to test methods which requires Sessions in my PHPUnit WebTestCase, with no success. PHP 8.0, Symfony 5.4 Here's my code: When user log-in, I'm saving custom info in session: public function ...
SilentBob's user avatar
  • 141
5 votes
1 answer
1k views

When you're using the app through the browser, you send a bad value, the system checks for errors in the form, and if something goes wrong (it does in this case), it redirects with a default error ...
Christophe's user avatar
1 vote
0 answers
73 views

Recently I came across fireevent and I tried to implement it on the website of Flipkart. I was trying to use firevent("onmouseover") for the link. I searched for mobiles in the search box ...
Prasad Varma's user avatar
0 votes
1 answer
44 views

I have a two classes let's say classA and classB. classA calls a method in classB which saves some value in a database using the DaoClass. I have to test if the values are getting saved in database. @...
user avatar
0 votes
0 answers
105 views

I have referred various answers on StackOverflow but I still haven't been able to resolve this issue. I am sharing the code for my controllers_test.rb and along with that the screenshot. Every time I ...
Rishabh Malhotra's user avatar

1
2 3 4 5
30