Newest Questions
11,655 questions
0
votes
2
answers
57
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?
0
votes
2
answers
42
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(),...
1
vote
1
answer
51
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 ...
0
votes
1
answer
61
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 ...
0
votes
2
answers
60
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 ...
0
votes
1
answer
47
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:
...
0
votes
0
answers
15
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....
-1
votes
1
answer
24
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 ...
-1
votes
1
answer
28
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 ...
0
votes
1
answer
36
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 ...
-1
votes
1
answer
54
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 &...
0
votes
1
answer
32
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 ...
1
vote
1
answer
33
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 ...
0
votes
2
answers
59
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 ...
-1
votes
1
answer
15
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 && ...