Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
158 views

I am working on a large-scale .NET test automation project (over 2500 test cases) that interacts with an application API. My goal is to keep the database clean and isolated between test runs. Here's ...
Burak Yücel's user avatar
0 votes
2 answers
292 views

For my e2e tests I'd like to get the current date and time and use this dateTime string in the payload body, like this: ### Precondition: Create a contract with current time stamp in ISO format # ...
Nicole Naumann's user avatar
0 votes
1 answer
48 views

I’m creating as well as running an automated test for Profile Page API endpoint using the DRF extension APITestCase. I already created/ran two separate automated tests for the login/registration API ...
Corveloper's user avatar
1 vote
2 answers
107 views

I am trying to learn cypress then come across a topic in validating json response body but did not discuss on how to store it in a variable. I would like to know how to store specific data set in a ...
JC Basilio's user avatar
1 vote
1 answer
45 views

I am encountering an issue with testing the login and logout functionalities in my Laravel application. When I run the test suite, some tests fail with a 404 status code instead of the expected 401 or ...
Abdulrahman Astra's user avatar
1 vote
1 answer
66 views

I am currently writing API tests with karate and I've run into a scenario I've been struggling to resolve. I'd like to validate that each object within the response has a specific item that has a ...
jsmith's user avatar
  • 11
0 votes
1 answer
333 views

I am trying to run a test file for my Web APIs using .http files. However, whenever I attempt to load the file in Visual Studio 2022 in the output box I get the following: Executing command 'dotnet ...
Aditya Gupta's user avatar
0 votes
1 answer
50 views

package com.automation.tests; import static io.restassured.RestAssured.*; import org.json.JSONObject; import io.restassured.response.Response; import io.restassured.specification.RequestSpecification;...
Yogesh's user avatar
  • 1
1 vote
1 answer
1k views

I'm trying to execute this API test: import { test } from "@playwright/test"; test("health check request", async ({ request }) => { await request.get(`<my-url>`); }); ...
I.sh.'s user avatar
  • 2,459
0 votes
1 answer
101 views

I'm using jmeter and I am testing my API. So in that API I have to test for 3 different thread groups (1 thread,100 and 1000 threads) and get as sum of all threads as a report in html file. But I need ...
Shubham Rawat's user avatar
2 votes
1 answer
2k views

I'm currently conducting penetration testing on a website, and I'm attempting to intercept requests using Mitmproxy to reverse engineer the backend APIs. However, I'm encountering a "502 Bad ...
Bemnet16's user avatar
0 votes
1 answer
181 views

I'm working on a RestAssured project and for some debugging purposes waant to print the full url to which the request is sent. In the project that I'm working on we set the ApiHost, BasePath, uri and ...
user avatar
0 votes
0 answers
62 views

I'm currently doing a mock voting app using ASP.NET Core 7 Web API and Blazor WebAssembly, I still do not have database for this, so what I did is I use AddSingleton for my repository, for me to test ...
ArcDotNet's user avatar
0 votes
1 answer
378 views

I want to use the cookie, received from the session in which I do POST request, in the next session with GET request, but I have problem. Here is my keyword: MY_Profile Log To Console HEADER ...
marysh's user avatar
  • 1
-1 votes
1 answer
516 views

In my collection I have many requests with asserts, in that I need to run only particular requests. Assume I have 10 requests and I need to run only 3,4 & 10 how can I do it by running through ...
Stephen Jose's user avatar
1 vote
1 answer
106 views

I am looking to test websocket connections using Visual Studio 2022 http files. Could not find any documentation on https://learn.microsoft.com/en-us/aspnet/core/test/http-files?view=aspnetcore-8.0.
shmit's user avatar
  • 2,534
1 vote
2 answers
541 views

** I'm evaluating testing frameworks and trying to decide between Karate and JMeter. What are the specific advantages of Karate over JMeter? **
bulbasorus's user avatar
-1 votes
1 answer
147 views

We will be performing unit testing in ASP.NET Web API using .NET 6. We are attempting unit testing using the Moq framework with the xUnit testing method. To begin, we download the Moq package. Next, ...
Barkha Bhavsar's user avatar
0 votes
1 answer
151 views

I'm encountering an issue with Pactum Cucumber where I'm getting an undefined error, despite receiving the expected output when testing the same request in the Postman application. Below, I've ...
karthikeyantse's user avatar
2 votes
1 answer
1k views

I am using postman flow for my POST calls. I have a variable, organizationId, that I would like to insert into my JSON body of my POST call. But I am getting the following error: body: "invalid ...
Mabel Oza's user avatar
  • 757
0 votes
0 answers
59 views

I am learning API testing, so I have created JSON file, and trying to create an API which will display the data found in JSON file into browser, but getting Oops, filename.json doesn't seem to exist ...
Sarvesh Shriyan's user avatar
0 votes
0 answers
32 views

I would like to test the POST and GET methods of two APIs called Restaurant and Employee. The two APIs work as expected. This question is specifically about how to test the two APIs? I have created 2 ...
ENV's user avatar
  • 1,342
0 votes
2 answers
106 views

I have intelliJ running with Java/REST API and having trouble removing and replacing string in a certain format. Response string : {"isSuccess":[{"frequency":}]}]}}{"...
Bubbles's user avatar
  • 81
0 votes
2 answers
619 views

I want to changing test tool from postman to jmeter. Usual body format was raw-json, I did well without any problems. But this case I should change form-data. First, Postman confirmed response(return ...
lky4720's user avatar
0 votes
0 answers
103 views

I am unable to map the feature file to the step definition one which is in different module. The project is split between two Java modules, in the firts one are the feature files and the runner and in ...
Stelian Yolov's user avatar

1
2 3 4 5
17