All Questions

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
-1 votes
1 answer
20 views

How to manage a few dozen free-trial credentials for testing third-party integrations?

We have a product that integrates with several-dozen third party applications. Our developers and testers sign up for free trial accounts with the third-parties so that we can validate that the ...
jamesmortensen's user avatar
0 votes
1 answer
32 views

How to iterate over List<WebElement> and click link based on text on any page inside webtable?

On my page, I have 25 Links displayed inside a web table, now i have to traverse all pagination pages, like 1-25, 25-50, 50-75 etc...my specific link text can be in any pagination set, it can be on ...
arvind2359's user avatar
-1 votes
1 answer
33 views

I want to know how to distinguish the blocked test case?

When I execute a test case, I meet a blocked issue 'QP-12' in my test case list. So I can't test cases QP-13 - 17, because there are a series of test cases of 'QP-12'. In this case, to share with QA &...
Seok Hwan Choi's user avatar
0 votes
0 answers
17 views

Contract like test without requests/rpc

I work on a (python) project that both depends and is depended on by other projects all developed in house. Pkg A --> Pkg B --> Pkg C Currently the API usage of Pkg B in Pkg A is only checked in ...
Kajsa's user avatar
  • 109
0 votes
0 answers
13 views

How to click on a specific link which is inside <table> element based on multiple pages and if not found click on "next" pagination link in Selenium?

How to click on a link that is under a table element, but that is not visible on first page. There are pagination links "previous" & "next" on the page, and i want to iterate ...
sachin2350's user avatar
0 votes
1 answer
24 views

Optimizing long-running playwright test

I have just completed my first two playwright tests, but I am not sure how to optimize them. The scenario is the following: I log in to the system with an administrative user. I create a new user and ...
JoSSte's user avatar
  • 231
1 vote
1 answer
29 views

Assertions "IsLoaded" method in page object?

So I am debating a bit on whether it makes sense to have a sort of isLoaded or similar method in a page object. I know there is some debate on having assertions in page objects (Most say no, some say ...
Mercfh's user avatar
  • 1,720
0 votes
2 answers
46 views

Sanity vs smoke testing

I am currently working on updating regression test suite. I would like to add some simple test at the beginning of the regression suite to make sure it is still behaving correctly and all the basic ...
martin balaz's user avatar
-1 votes
1 answer
14 views

What are very localized whitebox tests called?

Assumptions, imagine we are selling a software API: a "system test" verifies that a system works by calling it's public interface e.g. assert(init()==true) or assert(MY_PI > 2 && ...
Vorac's user avatar
  • 109
0 votes
0 answers
16 views

How to fetch latest commits in only specific project/folder in Git repository using eGit eclipse plugin?

I have a Git repository and have created multiple projects under that repo. Now, I have all those projects under an Eclipse workspace. The issue is that when I fetch latest commits from origin, it ...
kunal22's user avatar
0 votes
0 answers
12 views

Parallel feature files execution in Cucumber with TestNG runner? [duplicate]

How to run multiple feature files parallely in cucumber with TestNG runner? <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>...
kunaltester2304's user avatar
0 votes
0 answers
38 views

How to run multiple Feature files parallelly in Cucumber with TestNG Runner?

I am facing one issue: I need to run 5 feature files that are totally independent of each other, Each feature files logs into a different site. I want 5 different ChromeDriver Browser sessions to open ...
kunaltester2304's user avatar
2 votes
1 answer
67 views

Finding bugs = More works/overtime

I've been working as a manual software tester for 5 years and I find out that I always hope there is no issue in the app under tested. e.g: The company gave us 3 days to do regression testing every ...
QATestIsTough's user avatar
1 vote
2 answers
41 views

Load testing with functionality testing

I have a campaign with landing page with next button, opt-in page with form, scratch page with win/loose buttons, result page with next button, claim page with form and thank-you page. I want to do a ...
Karan Joshi's user avatar
0 votes
1 answer
29 views

How can time to execute a manual test case in DevOps be captured?

How can the amount of time required to execute manual test cases in Azure DevOps be captured. For example, I want to use the information in order to provide stakeholders with actionable data for how ...
Doug's user avatar
  • 1
0 votes
1 answer
21 views

Unable to locate button via Selenium WebDriver

Using Selenium to try and locate + press a button inside of an Atlassian Jira environment. The button class is not unique and the button doesn't have a button ID. I assume the website is built in an ...
Matthew  Gosnell's user avatar
-1 votes
1 answer
26 views

Excel application automation testing strategies

I have been newly assigned on a project which has Excel applications. Has anyone worked on one before? Have you implemented any automation strategies for the same? I have been researching the ...
Vanimol S's user avatar
0 votes
0 answers
16 views

Robot framework keyword hierarchy

Hi I have one problem with organizing robot keywords. I have some high level keywords which should be used directly in Test Cases and the I have lower level keywords which should not be used directly ...
martin balaz's user avatar
3 votes
3 answers
70 views

How to track legacy (or non-priority) bugs if not in the product backlog?

I have been reading some threads/articles online but I would highly appreciate some feedback based on my particular case. The context: a complex sector, historically no QA, large and old legacy ...
Elena Kirova's user avatar
0 votes
2 answers
43 views

Should QA broadly speaking be aware of under the hood application flows, or should all testing be black box?

As a developer I'm trying to work with my QA. We've been issued a mandate "your pipeline executions take too long, please optimize your testing strategies". I see one possible significant ...
Sidney's user avatar
  • 183
0 votes
1 answer
25 views

Timed out retrying after 4000ms: expected url to equal url in Cypress

Trying log in after 2fa , is not possible log in with Cypress, it gives the following error Timed out retrying after 4000ms: expected url to equal url. How can I handle this issue? it("Login"...
Mariam's user avatar
  • 11

15 30 50 per page
1
2 3 4 5
234