All Questions

-2 votes
0 answers
4 views

Why test automation is important?

How does test automation enhance today's software development environment? How can automation significantly enhance testing efficiency, reduce human error, and speed up release cycles? By implementing ...
Shanu Thakur's user avatar
0 votes
1 answer
10 views

How can JMeter be used to test the performance of Android/iOS native apps?

I found resources for testing mobile web by setting up a network and SSL certificate. How can this be done for native apps using JMeter?
Bala's user avatar
  • 11
0 votes
1 answer
22 views

How to avoid making lot of mistakes while testing functionality?

How can we avoid mistakes while doing testing specifically black box testing of application..I test a financial web application that deals with lot of funds moving around and financial data in ...
rahul2578's user avatar
2 votes
2 answers
27 views

What are the best strategies on how to continously (every x seconds) test a website?

I need to continuously monitor my website's quality, I already have some tests integrated in a CI, but I need to do some checks every x time, what the best strategies on this ? I'm using selenium, ...
Moad Ennagi's user avatar
0 votes
1 answer
16 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 ...
InquisitiveMind's user avatar
1 vote
1 answer
21 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 ...
DEnumber50's user avatar
  • 1,192
-2 votes
0 answers
8 views

Magick.Net issue while capturing full Page screenshot in Selenium with C#

CODE: using OpenQA.Selenium; using System; using System.Collections.Generic; using System.Drawing.Imaging; using System.Linq; using System.Text; using System.Threading....
chinmay k's user avatar
-1 votes
0 answers
7 views

Embeding multiple screenshots to a single Step in cucumber-Playwright report

I am doing POM using cucumber/playwright. I am taking screensots BeforeStep and AfterStep hence I get two screenshots. How can I embed these two screenshots in reports to the same step?
Ajay Kumar Prajapati's user avatar
-1 votes
0 answers
8 views

Getting "org.openqa.selenium.UnsupportedCommandException: This API is not supported anymore " This error while running my test case

org.openqa.selenium.UnsupportedCommandException: This API is not supported anymore. See https://github.com/appium/appium/issues/15807 Build info: version: '4.7.0', revision: '0a5b49d16f' System info: ...
user58982's user avatar
0 votes
0 answers
34 views

Increase the test performance avoiding the use of mock.create_autospec()

I have created a class called RedisCliWrapper where I have written many methods that call methods of the class redis.Redis. Below I show the class with only the method get_hgetall_value(), which is ...
User051209's user avatar
-1 votes
1 answer
21 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 ...
TinyGrasshopper's user avatar
0 votes
2 answers
25 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. ...
Nolak's user avatar
  • 11
0 votes
0 answers
21 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 ...
qatester972's user avatar
0 votes
0 answers
26 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, ...
Rincewind's user avatar
-1 votes
1 answer
19 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 ...
Nolak's user avatar
  • 11
0 votes
1 answer
40 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 ...
tester234's user avatar
0 votes
1 answer
31 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", "...
Metanol's user avatar
1 vote
0 answers
13 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-...
Pekotski Bit's user avatar
0 votes
0 answers
13 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 (...
pavan suresh's user avatar
1 vote
2 answers
35 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 ...
Y-B Cause's user avatar
  • 197
0 votes
1 answer
19 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 ...
CodeMonkey's user avatar
1 vote
1 answer
23 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 ...
Y_59_alef's user avatar
0 votes
1 answer
35 views

Do you automate testing of the responsiveness of UI app?

I agree that responsiveness of the UI app is important and must be tested. But, do you think, we should automate responsive tests of UI using Selenium?
Jimmy's user avatar
  • 249
0 votes
2 answers
15 views

CSS selector with multiple same classes under different divs

Example of the Problem: <div> <h2> one <div> <h2> two <div> <h2> three I want to select the second h2 with css. I know there is something like h2:nth-child(),...
random's user avatar
  • 1
1 vote
1 answer
39 views

Data clean up in selenium

I am doing automation testing of web browsers using selenium and the test includes that i create users, add personal details, approve, recommend and the likes. how do I clean up these data that has ...
Oluwabusayomi Temitope's user avatar
0 votes
1 answer
46 views

Test Case Result Chart to multiple Test Suites?

I have recently taken over Test Suite creation for my team and I have encountered a rather annoying and time-consuming issue. We are using Azure DevOps Test Suites. Scenario: Let's say we have 5 Test ...
BCE's user avatar
  • 11
0 votes
2 answers
48 views

Page Object Model: Base Page necessary?

I've gone back and forth on this, and am sort of having a hard time deciding if a "Base page" class is necessary or a good idea. In most cases this base page class someone stores common ...
Mercfh's user avatar
  • 1,720
0 votes
1 answer
40 views

How to repeat the same test with Selenium Webdriver without opening a new browser instance each time?

I am using Selenium Webdriver on Node.js with Cucumber.js. I want to run the same test on multiple pages. In this case just checking for 404s in my footer. My Cucumber .feature file looks like: ...
MeltingDog's user avatar
0 votes
0 answers
13 views

How to automate a fido token login

I need to automate a login which uses a fido token. No person can be behind the screen as it is supposed to be automated. I can build a small device which would move the "finger" up and down....
Hola Soy Edu Feliz Navidad's user avatar
-1 votes
1 answer
19 views

Why cant I see any transactions at the Grafana dashboard dropdwon

I have add transaction controllers to my jmeter test. But still I cant see any transactions at the Grafana dashboard. Here is the defenition for the transaction variable at Grafana : SHOW TAG VALUES ...
ChathuD's user avatar
  • 2,147

15 30 50 per page
1
2 3 4 5
389