Newest Questions
11,655 questions
0
votes
1
answer
33
views
Why isn’t Cypress referred to as “Cypress WebDriver” like “Selenium WebDriver”?
I’ve been working with both Selenium and Cypress for automated testing and I understand that WebDriver is used in both. However, I noticed that we often refer to “Selenium WebDriver,” but not “Cypress ...
1
vote
1
answer
72
views
Sending a file in the body of a POST request in Karate
I am having some difficulties getting a request to work as expected in Karate where I use a .json file in the body of my POST request. I have tried to define it as both a form field and as a multipart ...
0
votes
0
answers
43
views
Increase the test performance avoiding the use of mock.create_autospec()
I have created a class called RedisCliWrapper which contains many methods that call methods of the class redis.Redis. Below I show the class with only the method get_hgetall_value(), which is one of ...
-1
votes
1
answer
26
views
Does anyone know any low code or nocode packages (open-source or commercial) for load and longevity testing a mobile app?
In my research so far, I've found Jmeter, but Jmeter looks like it's for testing the services that the app are going to access. I am interested more in testing the system resource boundaries,m like ...
0
votes
2
answers
41
views
Text field manual testing
There is a field named "Project description." And it is not a mandatory field. Users will add their description of their project in that field. Now I am giving input and testing that field.
...
0
votes
0
answers
31
views
Unable to run feature files parallel with JUnit 4 and "mvn test" command?
I want to run my 5 Cucumber feature files with "Mvn test" Command parallely. Now, the "mvn test" or 'mvn build" runs fine and maven builds the project, but feature file dont ...
0
votes
0
answers
30
views
BDD Feature Files structure guidelines
Continuing on from BDD Feature Files guidelines
Say I have 10 feature files testing user actions 1-10, 1-Fund transferring, 2-Display balance, 3-etc
feature files:
In 'Fund transferring', login, ...
-1
votes
1
answer
21
views
How do I share my projects with external users to showcase my work in clickup and Jira?
I have been working on manual testing project and I have been using clickup as an project management tool and a bug tracking tool. Same thing goes for Jira. Now I want to showcase my work in GitHub ...
0
votes
1
answer
54
views
Best way to automate File contents verification using Selenium/Java?
In my application, there are lot of files that contain financial data and those are sent to different parties. So, I have to automate verification of content of all these files. Now, each file has a ...
0
votes
1
answer
47
views
What is the correct way to wait for database updates when testing the api?
I'm testing the api - after the request, I check that the values have appeared in the database.
A simple example is I'm throwing JSON
{
"field_1": "Value_1",
"...
1
vote
0
answers
18
views
What is a definition of 'Renderable canvas' in a context of web based test automation
In description of 'location' property of Selenium WebDriver the term 'Renderable canvas' is used:
property location: dict
The location of the element in the renderable canvas.
Link: https://selenium-...
0
votes
0
answers
20
views
How do you validate millions of data in 2 different databases as part of ETL Testing
How to validate millions of data in 2 different databases as part of ETL (Extract, Transform, Load) Testing.
And in the same databases, also tell me the testing process to validate the Target DWH (...
1
vote
2
answers
45
views
Do you disable JavaScript as part of your testing? If so, how do you know whether something is buggy?
I sometimes disable JavaScript to see how a website behaves without it. I'm often surprised how much the content display relies on it. But I'm unsure whether it's a bug. I read that almost everybody ...
0
votes
1
answer
23
views
Green/Blue Deployments with several development teams
I am working in an AKS cluster environment with several clusters separated from each other.
I've been reading about Green/Blue deployments about testing a change in one cluster and then rerouting ...
1
vote
1
answer
26
views
Load testing asynchronous systems
I have developed an image processing web application and would like to run some load tests to get an idea how it will handle peak usage scenarios.
The application is asynchronous and to simplify ...